开发者

How to display private (or draft) Wordpress blog post outside blog

I would like WordPress to use as a edit tool and my website as a renderer, but don't want to posts created for website display on my blog. So I did this on my website:

  • created private post
  • put on website this:

    define('WP_USE_THEMES', true); require('blog/wp-load.php');

    $args = array( 'post_status' => 'private', 'p' => '3019' ); query_posts( $args );

    ?>

Unfortunately it does not work.

When i set p to post id that is published it works. When i publish my private post as public it works too. But when post is private it does not work.

What to do 开发者_开发问答to make this work?


I think use get_posts would be easier.. http://codex.wordpress.org/Template_Tags/get_posts

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜