如何在WordPress自定义模板中实现Category.php页面标题? 时间:2015-09-18 作者:Ankur Kumar 假设您有一个自定义模板,并且希望为section/category/general实现Wordpress模板的标题,其中general是一个类别名称。如何实现此页面的类别页面标题。我试过了 <h2><a href="#" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ? >"><?php the_title(); ?></a></h2> 但这并不是一个可点击的链接。 2 个回复 SO网友:Bruno Monteiro 您的代码很好,唯一的问题是语法错误。始终记住删除开头和结尾标记之间的任何空格,否则代码将失败。示例:<h2> <a href="#" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> <?php the_title(); ?> </a> </h2> 确保阅读Wordpress Codex关于the_title_attribute() 要更好地了解如何自定义此功能,请执行以下操作:https://codex.wordpress.org/Function_Reference/the_title_attribute SO网友:Rarst 如果要链接到循环中的当前帖子,需要在标记中提供相应的URL。在您的代码片段中href="#" 应该是吧href="<?php the_permalink(); ?>". 文章导航