【发布时间】:2014-07-03 16:19:04
【问题描述】:
我试图在我的主页上只显示一个类别。为此,我知道我必须编辑 index.php 文件,但我不知道为什么我的代码没有使用。在这种情况下,我要显示的帖子类别的ID是“1”
这是代码(我的编辑是最后一行):
<div class="row">
<!-- Contains the loop of all posts -->
<div class="col-md-8" id="post-container">
<!-- Start the Loop. -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if (in_category('1')&& is_home()) continue; ?>
有什么想法吗?
免责声明:我一点也不精通 php,只是有人告诉我这应该是一个容易解决的问题。
【问题讨论】:
标签: php wordpress categories posts