true, 'mentions' => true, 'tags' => true, 'shortcodes' => true, 'comments' => true, ]; } return $args; } /** * Filter callback. * * Group pinned posts when in compact mode. */ public static function filter_should_group_pinned_posts( $should_group ) { if ( self::should_show_compact_view() ) { return true; } return $should_group; } }