<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('content', get_post_format()); ?>
<?php endwhile; ?>
<?php twentythirteen_paging_nav(); ?>
<?php else : ?>
<?php get_template_part('content', 'none'); ?>
<?php endif; ?>
我從2013年主題的index.php
文件中取得了這段代碼。我將這些代碼粘貼到我的網站上,以便我稍後編輯內容。有用。但它會顯示我放置上述代碼的所有帖子,但我需要只顯示某些部分的帖子。需要停止wordpress帖子循環
如何編輯代碼來阻止它循環wordpress中的所有帖子,並只顯示我想要的帖子。
你想顯示什麼樣的職位? –