当仅在页面上显示 1 个类别的帖子时,我在让我的旧/新帖子在 Wordpress 上工作时遇到了一些重大问题。
在我定义一个类别之前它工作得非常好,但现在我的客户想要一个页面上的一个类别,另一个页面上的另一个类别。
我正在使用的代码粘贴在下面。如果您想要临时登录,我可以为您设置.. 过去 2 小时这让我发疯了!
<?php $my_query = new WP_Query($querystring . 'cat=3&posts_per_page=8');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<?php /* Start the Loop */ ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="date"><?php the_time('F j, Y') ?></h2></div>
<div class="entry-content">
<?php the_content('Read the rest of this entry'); ?>
<?php wp_link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
</div>
<?php endwhile; ?>