如何在模板文件中包含自定义类别和标签库?

时间:2012-09-28 作者:marpa

如何在类别和标记模板文件中包括自定义类别和标记基名称?具体来说,我想在类别和标记页面的页面标题中包含自定义类别和标记名称。

例如,如果站点管理员转到“设置”>“永久链接”,并指定:category base=locationtag base=software

我希望类别页面标题为:Location>single\\u cat\\u title

我希望标记页标题为:软件>single\\u tag\\u title

我找不到显示此内容的模板标记。

1 个回复
SO网友:marpa

我们可以使用以下工具获取自定义类别和标记基名称:

get_option(\'category_base\', \'Categories\')
get_option(\'tag_base\', \'Tags\') 
我们将这些函数包装在ucwords()中,以便将基名称大写,并将“\\u0”替换为“”:

ucwords(str_replace(\'_\',\' \',get_option(\'category_base\', \'Categories\'))
ucwords(str_replace(\'_\',\' \',get_option(\'tag_base\', \'Tags\'))
最后,我们用本地化代码包装了所有这些内容,并添加了单个类别/标记标题:

printf( __( ucwords(str_replace(\'_\',\' \',get_option(\'tag_base\', \'Tags\'))).\' &raquo; %s\', \'2010-translucence\' ), \'<span>\' . single_tag_title( \'\', false ) . \'</span>\' );

结束

相关推荐

Retrive post by tags PHP code

例如,我正在建设一个电影院网站。。对于电影-我在使用post-电影都是在那里发布的。。对于actors,我使用post\\u类型:persoane,分类法:lista。我怎样才能重温布鲁斯·威利斯在http://cinema.trancelevel.com/persoane/bruce-willis/例如,我有:http://cinema.trancelevel.com/the-cold-light-of-day-2012-2/ 这部电影有布鲁斯·威利斯的标签。。。。(这是wp中的regolar帖子)在布