A
Size: a a a
A
DI
A
DI
SM
SZ
Иi
SZ
С
MK
MK
MK
MK
/**
* Вертаем взад meta:description на АМР страницах.
*/
add_action(
'amp_post_template_head',
function ( $amp_template ) {
?>
<meta name="description" content="<?php echo esc_html( get_post_meta( get_the_ID(), '_yoast_wpseo_metadesc', true ) ); ?>" />
<?php
}
);
MK
/**
* Вертаем взад meta:description на АМР страницах.
*/
add_action(
'amp_post_template_head',
function ( $amp_template ) {
if ( ! class_exists( 'WPSEO_Frontend' ) ) {
return;
}
$wpseo = WPSEO_Frontend::get_instance();
?>
<meta name="description" content="<?php echo esc_html( $wpseo->metadesc( false ) ); ?>" />
<?php
}
);
MK
SM
SM
A
SM
SM