如何在Wordpress循环中按页面ID显示六个细节页面?例如,我想仅显示页面ID 6,8,10,12,14和16。
感谢。
答案 0 :(得分:2)
您可以在the_loop中使用以下代码:
<?php if ( in_array(get_the_ID(), array(6, 8, 10, 12, 14, 16)): ?>
// continue doing stuff
<?php endif; ?>
其中6,8等是您想要的页面的ID
答案 1 :(得分:1)
这就是我最终做的事,可能对其他人有所帮助;
<?php
$args = array(
'post_type' => 'page',
'post__in' => array(6,8,10,12,14,16)
);
query_posts($args);
?>
<?php if (have_posts()): while (have_posts()) : the_post(); ?>
// thumbnail, title etc..
<?php endif; ?>
非常感谢你们