我的“pagetitle”模板部分中有以下代码:
<?php
the_archive_title( \'<h1>\', \'</h1>\' );
the_archive_description( \'<span class="archive-description">\', \'</span>\' );
?>
现在,我希望在我的页面中看到以下内容:
<h1>The Archive title</h1>
<span class="archive-description">The Archive description</span>
但我得到的是:
<h1>Archive title <span class="archive-description">The Archive description</span></h1>
标题h1中包含的描述范围。为什么会这样?
注意:我之前已从中删除了p标记the_archive_description()
使用remove_filter(\'term_description\',\'wpautop\');