带有短代码的前端Wordpress类别描述

问题描述 投票:0回答:2

我正在使用此代码在前端显示类别描述:

    <?php 
the_archive_description( '<div class="taxonomy-description">', '</div>' ); 
?>

但在管理员里面的描述我想放置可以在前端显示的短代码。我怎样才能实现它?

wordpress
2个回答
0
投票
  1. 您可以尝试在活动主题functions.php中添加以下代码
  2. 对于类别: add_filter('category_description','do_shortcode');
  3. 对于分类: add_filter('term_description','do_shortcode');
  4. 对于标签:add_filter('post_tag_description','do_shortcode');

让我知道它是否有效..


0
投票
  • Admin Dashboard > Posts > Categories
  • 单击要更新其描述的类别。
  • 更新加载和保存的新页面上的说明。
© www.soinside.com 2019 - 2024. All rights reserved.