Created
August 29, 2020 14:51
-
-
Save taciara/f0ae2058f3d394218fbe0f5dcb2e0f32 to your computer and use it in GitHub Desktop.
Alterar ordem do Archive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // ORDEM DO ARCHIVE | |
| add_filter('pre_get_posts', function ( $wp_query ) { | |
| if ( $wp_query->is_archive() && 'SLUGDOARCHIVE' === $wp_query->get('post_type') ) { | |
| $wp_query->set('meta_key', 'data_de_inicio'); | |
| $wp_query->set('orderby', 'meta_value'); | |
| $wp_query->set('order', 'ASC'); | |
| } | |
| return $wp_query; | |
| }); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment