在循环中,无论是“单个”页面还是“索引”页面,请对照当前用户ID检查帖子作者,并且仅在匹配时显示帖子。假设您使用的是一个典型的WordPress循环,例如。。。
global $current_user;
get_currentuserinfo();
// start of the Loop
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
if ($post->post_author != $current_user->ID) continue;
这还假设您正确插入了自定义的Post类型条目,以便按原样填充所有数据。