交替主迴圈(預獲取過濾器)
如果你使用的是 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
});