使用custom query for this.
$user_id = 1;
$the_query = new WP_Query( array( \'post_type\' => \'attachment\', \'post_status\' => \'inherit\', \'author\' => $user_id) );
if ( $the_query->have_posts() ) while ( $the_query->have_posts() ) : $the_query->the_post();
the_title();
endwhile;
这将显示用户id为1的用户的所有附件标题。您可以使用
get_the_ID()
在循环中获取附件ID。