Display Category description

时间:2018-11-15 作者:Jesús

我只想在第一页显示类别说明:

我在我的类别中使用。php:

<?php if(category_description()) :?>    
<section class="cat-desc"> 
<?php echo category_description(); ?>
</section>
<?php endif; ?>
我尝试以下方法:

   <?
   if (is_category()) {
   $page = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
   if ($page == 1) {
   echo category_description(); //you don\'t need to include the category id 
    on the actual category page - wordpress figures it out. 
   }
   }
  ?>  
  <?
  if (is_tag()) {
  $page2 = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
  if ($page2 == 1) {
  echo tag_description(); //you don\'t need to include the category id on the 
  actual category page - wordpress figures it out. 
  }
  }
  ?> 
类别描述正常,但缺少标记描述。

谢谢

1 个回复
最合适的回答,由SO网友:vikrant zilpe 整理而成

将描述添加到标记后,修改WordPress主题以在每个存档页的顶部显示描述。打开WordPress网站主菜单的“外观”部分,然后选择“编辑器”单击页面右侧“标记模板”下的“tag.php”链接。

结束