Created
October 31, 2013 00:54
-
-
Save funteractive/7242846 to your computer and use it in GitHub Desktop.
pre_get_postsでクエリーを変更するひな形
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 | |
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