Skip to content

Instantly share code, notes, and snippets.

@taciara
Created August 29, 2020 14:51
Show Gist options
  • Select an option

  • Save taciara/f0ae2058f3d394218fbe0f5dcb2e0f32 to your computer and use it in GitHub Desktop.

Select an option

Save taciara/f0ae2058f3d394218fbe0f5dcb2e0f32 to your computer and use it in GitHub Desktop.
Alterar ordem do Archive
<?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