简体   繁体   English

在 Woocommerce 的自定义类别中添加文本

[英]Add text in custom categories in Woocommerce

can you please advise me how can I add text to the product category under products?你能告诉我如何在产品下的产品类别中添加文本吗?

Thank you谢谢

Andrew安德鲁

if you´re using wordpress plugin try it:如果您使用的是 wordpress 插件,请尝试:

add_action('woocommerce_after_main_content', 'add_my_text');
function add_my_text() {
    echo '<p>More Content on the Way.</p>';
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM