您可以使用get\\u currentuserinfo()函数获取当前登录用户的信息。
例如:
<?php
global $current_user;
get_currentuserinfo();
$username = $current_user->user_login;
$user_id = $current_user->ID;
?>
然后可以在自定义循环中使用$username或$user\\u id。
<?php
// assign the variable as current category
$category = $user_id;
// concatenate the query
$args = \'cat=\' . $category;
// run the query
query_posts( $args );
if ( have_posts() ) : while ( have_posts() ) : the_post();
// do something here
endwhile;
endif;
wp_reset_query();
?>