gpt4 book ai didi

php - Woocommerce 简短描述摘录长度

转载 作者:行者123 更新时间:2023-12-02 06:15:23 25 4
gpt4 key购买 nike

我正在尝试更改简短描述摘录长度。

我发现以前的帖子说我应该改变

<?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?>


<?php $excerpt = apply_filters( 'woocommerce_short_description', $post->post_excerpt );
echo substr($length,0, 10);
?>

但是,当这样做时,我的摘录就会消失。

最佳答案

恐怕您正在编辑插件……如果是这样,那您就做错了……

创建一个函数,然后 Hook 到该过滤器......像这样......

add_filter('woocommerce_short_description', 'reigel_woocommerce_short_description', 10, 1);
function reigel_woocommerce_short_description($post_excerpt){
if (!is_product()) {
$post_excerpt = substr($post_excerpt, 0, 10);
}
return $post_excerpt;
}

将此粘贴到您的主题的functions.php 文件中。

关于php - Woocommerce 简短描述摘录长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35693954/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com