categories - Display Category description

admin2025-06-06  6

I want display category description only the first page:

I use in my category.php:

<?php if(category_description()) :?>    
<section class="cat-desc"> 
<?php echo category_description(); ?>
</section>
<?php endif; ?>

I try this:

   <?
   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. 
  }
  }
  ?> 

With the Category description is all ok but the tag description is missing.

Thanks.

I want display category description only the first page:

I use in my category.php:

<?php if(category_description()) :?>    
<section class="cat-desc"> 
<?php echo category_description(); ?>
</section>
<?php endif; ?>

I try this:

   <?
   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. 
  }
  }
  ?> 

With the Category description is all ok but the tag description is missing.

Thanks.

Share Improve this question asked Nov 15, 2018 at 4:02 JesúsJesús 31 bronze badge 2
  • Are you sure the tag actually has a description? And category.php is for category archives - for tag archives, use tag.php. – Sally CJ Commented Nov 15, 2018 at 5:06
  • Thnaks!! I addes tag.php (my theme wasnt added it). – Jesús Commented Nov 15, 2018 at 8:33
Add a comment  | 

1 Answer 1

Reset to default 0

After adding descriptions to your tags, modify your WordPress theme to display the description at the top of each archive page. Open the "Appearance" section of your WordPress website's main menu and select "Editor." Click the "tag.php" link under "Tag Template" on the right side of the page.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749179919a317031.html

最新回复(0)