函数
has_description()
和 get_the_description()
在 WordPress 中不存在,在 WooCommerce 中也不存在。
正确使用的 WordPress 功能是:
get_the_content()
,例如:
<head>
<meta name="description" content="<?php
$description = get_the_content();
if ( $description) {
echo wp_strip_all_tags($description);
}
?>"/>
</head>
应该可以。