0

wordpress 中是否有返回 wordpress 站点中所有受密码保护页面的排序列表?

如果是这样,我该怎么做?

我基本上想要一页显示所有受密码保护的页面的列表......

谢谢!:)

4

2 回答 2

0

你可以试试这个

$password_pages = $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post' AND post_password !=''"); 
wp_list_pages('include=' . implode(",", $password_pages)); 
于 2013-10-02T13:23:00.480 回答
-1
// Filter to hide protected posts
function exclude_protected($where) {
    global $wpdb;
    return $where .= " AND {$wpdb->posts}.post_password = '' ";
}

// Decide where to display them
function exclude_protected_action($query) {
    if( !is_single() && !is_page() && !is_admin() ) {
        add_filter( 'posts_where', 'exclude_protected' );
    }
}

// Action to queue the filter at the right time
add_action('pre_get_posts', 'exclude_protected_action');

我建议使用过滤器,上面的代码将排除所有受密码保护的帖子,通过一些编辑,您将能够获得所有受密码保护的帖子。

更多信息:https ://codex.wordpress.org/Using_Password_Protection#Hiding_Password_Protected_Posts

于 2013-10-02T22:14:54.957 回答