如何获取产品简短说明并在此处添加:
<meta name="description" content=" here ">
删除时不使用任何插件
<?php wp_head(); ?>
来自我的主题header.php中,没有插件可以使用。
答案 0 :(得分:1)
对于WooCommerce产品单页,您只需使用:
<?php
global $post;
if( is_product() )
$short_description = esc_html( $post->post_excerpt );
?>
<meta name="description" content="<?php echo $short_description ?>">
经过测试并可以正常运行((我已经像wp_head()
一样评论了<?php // wp_head(); ?>
进行了测试)。