【问题标题】:Wordpress: Display author's drafts and pending review posts in frontendWordpress:在前端显示作者的草稿和待审核的帖子
【发布时间】:2012-11-27 01:38:15
【问题描述】:

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

我希望每个人都在不同的页面中。

我在我的自定义模板中尝试了这个功能,但不幸的是它不起作用。

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

【问题讨论】:

    标签: php wordpress content-management-system


    【解决方案1】:

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

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

    在页面模板中循环开始之前插入。

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2013-06-10
      • 2017-04-21
      • 1970-01-01
      • 2012-07-03
      • 1970-01-01
      • 1970-01-01
      • 2012-02-08
      • 1970-01-01
      相关资源
      最近更新 更多