快速Wordpress问题。是否可以检查特定类别,以便不显示它?我尝试了这个,但我的类别仍然被回应(没有错误)。
<?php if (the_category() != "NAMEOFMYCATEGORY") { the_category(' | '); } ?>
或者我需要使用新功能吗?
澄清:我想隐藏1个特定类别,因此它不显示。
答案 0 :(得分:8)
这应该有效:
<?php
foreach (get_the_category() as $category) {
if ( $category->name !== 'FORBIDDEN CATEGORY NAME' ) {
echo '<a href="' . get_category_link($category->term_id) . '">' .$category->name . '</a><br />'; //Markup as you see fit
}
名称是Caps敏感。
答案 1 :(得分:4)
为什么不使用codex版本?
if (is_home()) {query_posts('cat=-1,-2,-3'); } // excludes categories 1 2 3
你还记得in_category()吗?
if (have_posts() && (!in_category('3')) {
//do domething;
} else // do different loop
答案 2 :(得分:2)
如果我的问题正确的话,我认为你需要做这样的事情:)
foreach((get_the_category()) as $category) {
if($category->cat_name = 'mycheckcatname')
{
DO THIS
}
else
{
Do THAT
}
}
新编辑 -
或者这就是你正在寻找的东西---
<?php if (is_category('Category A')) : ?>
<p>This is the text to describe category A</p>
<?php elseif (is_category('Category B')) : ?>
<p>This is the text to describe category B</p>
<?php else : ?>
<p>This is some generic text to describe all other category pages,
I could be left blank</p>
<?php endif; ?>
答案 3 :(得分:0)
<?php
$categories = get_categories('');
$excluded_categories = array('Sem Categoria','Uncategorized');
foreach ($categories as $category) {
if(in_array( $category->cat_name, $excluded_categories)){
continue;
}
echo $category->name;
}
?>