您还可以使用一个新的查询(启用php),以便按ID显示单个帖子,即ID为101的帖子:
<?php $my_query = new WP_Query(\'p=101\'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<?php the_title(); ?><?php the_content(); ?></a>
<?php endwhile; ?>
这可以在WP循环中多次使用,不会产生冲突。
使用Exec-PHP « WordPress Plugins 或其他。