交替主循环(预获取过滤器)
如果你使用的是 PHP 5.3.0 或更高版本,则可以使用闭包( 匿名函数 )
add_action( 'pre_get_posts', function( $query ) {
if( !$query->is_main_query() || is_admin() ) return;
// this code will run only if
// - this query is main query
// - and this is not admin screen
});