Skip to content

Instantly share code, notes, and snippets.

@Jonnyauk
Created February 7, 2015 00:00
Show Gist options
  • Save Jonnyauk/16aefac2db04485b2da9 to your computer and use it in GitHub Desktop.
Save Jonnyauk/16aefac2db04485b2da9 to your computer and use it in GitHub Desktop.
pre_get_posts example
<?php
function mywfx_archive_order_by_title($query) {
if ( !is_admin() && $query->is_main_query() ) {
if ( is_post_type_archive( ‘kitty’ ) {
$query->set( 'orderby', 'title' );
$query->set( 'order', 'ASC' );
}
return $query;
}
}
add_action( 'pre_get_posts', 'mywfx_archive_order_by_title', 1 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment