我在codex中找到了这个:
// 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');
但它没有用。也许是因为我已经定制了我的循环。我希望按照这些方式做一些简单的事情:
<?php $postsLatest = get_posts('numberposts=10&passwordproteced=false'); foreach($postsLatest as $post) { ?>
这可能吗?
答案 0 :(得分:4)
has_password
和post_password
参数您写道:
我希望按照以下方式做一些简单的事情:
passwordproteced=false
你非常接近,因为你可以使用布尔has_password
参数:
$postsLatest = get_posts( 'has_password=false' );
获取没有密码的帖子。
您可以在Codex for WP_Query()
中阅读有关此参数的更多信息,因为get_posts
只是WP_Query()
的包装,并且共享输入参数。
注意,这只适用于WordPress 3.9+
:
has_password(bool) - 对于带密码的帖子为true;错误的帖子 没有密码;对于包含和不包含密码的所有帖子均为null (适用于3.9版)。
还有另一个新的post_password
参数,其中包含可能的值:
您可以查看Trac Ticket。
pre_get_posts
过滤器与get_posts一起使用:您使用pre_get_posts
过滤器失败的原因是默认情况下get_posts()
会抑制所有pre_get_posts
过滤器。使用suppress_filters=false
参数应用它。
答案 1 :(得分:1)
您可以在自定义循环中执行此操作。
<?php
if ( post_password_required() ) {
continue;
} else {
echo 'normal post';
}
?>