我正在为一所学校做这件事。每个帖子都有密码保护。与父母相关的不同帖子的密码也不同。每个父母都有一个用户名和密码。我希望他们在登录时能看到与其相关的信息。
这是我尝试过的。该代码使用正确的密码识别了人员,但无法显示内容。
$args = array(
'post_type' => array( 'post' ),
'has_password' => true,
'post_password' => 'Stud[4]@0830-15',
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// show content if it belongs to current user
the_content();
}
} else {
echo "This content doesn't belong to you";
}
// Restore original Post Data
wp_reset_postdata();