如何仅为子类别页面显示页面标题

时间:2012-03-27 作者:Max

如果这是一个愚蠢的问题,我很抱歉,但我只是在学习PHP和Wordpress。这可能很简单。

我有一个网站,顶级导航是所有父类别,子类别是下拉列表。这些页面都是从类别中提取的。php。

在子类别页面上,我想显示当前子类别页面标题(我想是single\\u cat\\u标题)以进行样式设置,但我想在父类别页面上排除此功能。

我一直在尝试使用get\\u the\\u category()非常简单地编写这篇文章,就像codex中的这个例子:

$category = get_the_category(); echo $category[0]->cat_name;

非常感谢您的帮助。

1 个回复
最合适的回答,由SO网友:Rutwick Gangurde 整理而成

在显示标题的任何位置添加复选框:

//Anything greater than 0 means the category has parents, 0 means no parent, child category
if($category->category_parent > 0){
    echo $category[0]->cat_name;
}
这应该会有所帮助。

结束

相关推荐

Echo title attribute php

我有以下功能。php:function twentyten_continue_reading_link() { global $id; return \' <span class=\"readmore\"><a href=\"\'. get_permalink($id) . \'\" title=\"\' . the_title_attribute( array(\'echo\' => 0, \'before\' => \'Permalink to: \',