如何在作者上显示当前浏览作者的贴子。php模板?
$sticky = get_option( \'sticky_posts\' );
rsort( $sticky );
$sticky = array_slice( $sticky, 0, 5000 );
query_posts( array(
\'post__in\' => $sticky,
\'author\' => $current_user->ID,
\'orderby\' => \'rand\',
\'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'posts_per_page\' => 5,
\'caller_get_posts\'=> 5
) );
这很好,但它显示了所有作者的贴子,而不仅仅是当前查看作者的贴子。