将章节标题从WordPress主题从H2更改为H1

将章节标题从WordPress主题从H2更改为H1,wordpress,page-title,Wordpress,Page Title,正如标题所述,我很难找到将当前为h2的部分标题更改为h1的位置 参考网站: 任何见解或建议将不胜感激 在第112行和第219行“functions/templates”文件夹的“sections.php”页面中有: <?php echo ($section_post->post_title) ? '<h2>' . apply_filters('the_title', $section_post->post_title) . '</h2><div c

正如标题所述,我很难找到将当前为h2的部分标题更改为h1的位置

参考网站:

任何见解或建议将不胜感激

在第112行和第219行“functions/templates”文件夹的“sections.php”页面中有:

<?php echo ($section_post->post_title) ? '<h2>' . apply_filters('the_title', $section_post->post_title) . '</h2><div class="clear"></div>' : ''; ?>



更改为
应该可以达到您想要的效果。

您需要在主题文件中进行更改。@user3869776,是否有不接受答案的原因?
<?php echo ($section_post->post_title) ? '<h2>' . apply_filters('the_title', $section_post->post_title) . '</h2><div class="clear"></div>' : ''; ?>