我需要按类别获取一些帖子并将其显示在wordpress中。我需要在wp博客中隐藏这些帖子。但在我的自定义页面中可见。通过php。
我是使用wordpress的菜鸟。任何人都可以指导我如何做到这一点?
答案 0 :(得分:0)
您的文件应该是这样的:
<?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课程,以获取您需要的帖子。