Wordpress:在前端显示作者的草稿和待审批的帖子

时间:2012-11-19 15:53:01

标签: php wordpress content-management-system

我需要一种方法让用户查看他发布的帖子的草稿和待审核。没有到仪表板 - 这意味着从前端。

我希望每个页面都与另一页不同。

我在自定义模板中尝试了此功能,但不幸的是它没有用。

<?php query_posts('&post_type=post&post_status=draft'); ?>

1 个答案:

答案 0 :(得分:0)

在您的情况下,您需要使用数组作为参数调用query_posts()。试试这个:

<?php
$args= array(
    'post_type' => 'post',
    'post_status' => 'draft'
);
query_posts($args);
?>

在页面模板中 the Loop 开始之前插入此内容。

来源:WordPress › Support > How-To and Troubleshooting