1

快速 Wordpress 问题。是否可以检查特定类别,而不是显示它?我试过了,但我的类别仍在回显(没有错误)。

 <?php if (the_category() != "NAMEOFMYCATEGORY") { the_category(' | '); } ?>

还是我需要使用新功能?

澄清一下:我想隐藏 1 个特定类别,这样它就不会出现。

4

4 回答 4

9

这应该有效:

<?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
    }

这个名字是大写敏感的。

于 2012-06-19T19:27:35.537 回答
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
于 2012-06-20T15:34:50.657 回答
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; ?>
于 2012-06-13T07:48:53.203 回答
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;
    }                                     
?>
于 2020-04-27T18:32:55.487 回答