大家好,有人知道为什么这段代码忽略了作者id,并且给所有登录用户提供了相同的帖子,我想显示一个由登录用户发布的相关帖子?所有用户都有该类别的帖子,我想显示登录用户拥有的帖子
$current_user = wp_get_current_user();
$current_user->ID;
$post_ref = get_posts( array( \'author\' => $current_user->ID, \'numberposts\' => 1, \'cat\' => 31 ) );
foreach( $post_ref as $post ):
the_title(); echo get_the_ID();
endforeach;