我在 WordPress 中有三个帖子,每个帖子都有类别Event
。
我假设我使用 WordPress codex 来调用这些帖子,以便在我想显示的时候显示。
发生的事情是这些帖子都显示在index.php
. 我希望能够使用 WordPress 代码并获取某个类别的帖子并显示它们。例如,在弹出的 div 中显示帖子。
如何让帖子不显示在首页?如何让特定类别的帖子显示?
还是我以错误的方式解决这个问题?我假设可以从数据库中获取 Posts 并将其放入弹出 div 中。
这是我main
的 index.php 的内部 html
<div id="main">
<div id="nav">
<?php
if(!isset($_GET['page_id'])) {
wp_nav_menu( array( 'theme_location' => 'main-menu'));
}
?>
</div>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div>
我希望它获取当前页面内容而不是帖子。