Skip to content

Instantly share code, notes, and snippets.

@funteractive
Created October 31, 2013 00:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save funteractive/7242846 to your computer and use it in GitHub Desktop.
Save funteractive/7242846 to your computer and use it in GitHub Desktop.
pre_get_postsでクエリーを変更するひな形
<?php
function custom_query( $wp_query ){
if( !is_admin() && $wp_query->is_main_query() && $wp_query->is_post_type_archive( 'title' ) ){
$wp_query->set( 'posts_per_page', 12 );
}
}
add_filter( 'pre_get_posts', 'custom_query' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment