显示文章脱离wordpress
问题描述:
我需要按类别获取一些帖子,并将它们显示出wordpress。我需要隐藏在wp博客中的这些帖子。但在我的自定义页面中可见。通过php。显示文章脱离wordpress
我很喜欢wordpress。任何人都可以指导我如何做到这一点?
答
你的文件应该是这样的:
<?php
require '/path/to/wordpress/root/wp-load.php';
$the_query = new WP_Query('post_status=private');
while ($the_query->have_posts()) : $the_query->the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
?>
了解更多关于WP_Query类来获得您需要的职位。