在文章WP中显示类别描述

时间:2018-08-29 16:26:05

标签: wordpress

在文章中,我使用此代码显示记录的类别。

foreach( get_the_category() as $category ){ 
    $namecat = $category->cat_name; 

    if($namecat == 'Audio'){
       echo '<h3>Spare parts for car audio</h3><p>'.the_archive_description().'</p>';
    } elseif($namecat == 'сказка'){
      echo '<h3>Spare parts for infiniti car</h3>'.the_archive_description().'';
    } else {
     echo '<h3>'.$namecat.'</h3>'.the_archive_description().'';
    }
}

但是不显示通过the_archive_description()调用文章中的类别描述。如何在文章中显示类别说明?

0 个答案:

没有答案