📌  相关文章
📜  待发帖子的永久链接不起作用 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:17.928000             🧑  作者: Mango

代码示例1
// Make Non Login user see pending posts
function allow_pending_listings($qry)
{
    if (isset($_GET['p'])) {

        $post = get_post($_GET['p']); // parameter "p" in url
        if (!is_admin()) {
            $qry->set('post_status', array('publish', 'pending'));
            // will add the "pending" status to loop query
        }
    }
}
add_action('pre_get_posts', 'allow_pending_listings');