为什么我的WordPress索引有一个类别?

时间:2017-01-06 作者:Samuel Charpentier

因此,我的主页设置为显示wordpress网站的最新文章。我使用php来检测页面是否在我的模板的标题中有一个特殊的类别,并且它在我的主页的例外处每隔一个页面上运行,返回类别Blog(ID=12),这是我的类别之一。当我转到我的phpMyAdmin并查看wp\\u term\\u relationships表时,我可以看到3篇使用此类别的文章,它们是实际的文章。如何解除此博客类别的索引页绑定?

附言:我对wordpress这件事很陌生,如果我不清楚的话,很抱歉。

This is what\'s in the head:

<script>
    <?php
    $category = get_the_category();
    if($category[0]->{\'name\'} !== "Blog"){
        echo "document.onload = removeWhiteDiv();";
    }
    ?>
</script>
</head>
<body>
<div id="whiteDiv">
    <pre><?php print_r($category) ?></pre>
</div>

1 个回复
SO网友:Samuel Charpentier

我还没有找到为什么我的主页上有一个类别,但我找到了它的功能is_home() 并将其添加到我的if中:

if($category[0]->{\'name\'} !== "Blog" || is_home()){
      echo "document.onload = removeWhiteDiv();";
}
if($category[0]->{\'name\'} === "Blog" && !is_home()){
      echo "headerAnimation();";
}