如何获取 WooCommerce 产品详细描述以将其显示在标题中?

问题描述 投票:0回答:1
php woocommerce product
1个回答
0
投票

函数

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>

应该可以。

© www.soinside.com 2019 - 2024. All rights reserved.