如何在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(); ?>".

相关推荐

删除具有实际标题的SANITIZE_TITLE_WITH_DASSES函数

求你了,我真的需要帮助。下面的代码是在我的网站上将搜索查询保存为标记的代码,但它将标题替换为“-”,请问有什么方法可以使标记标题名称保持搜索状态?。function addsometags() { //Don\'t do anything if we\'ve already got 20 tags $posttags = get_the_tags(); $count=0; if ($posttags) { foreach($posttags as $tag