pre_get_posts exclude widgets query
-
Hello, I am using the following to modify the number of posts on this template page. However, it is also changing the Recent posts widget. How can I exclude the widgets from being affected.
function team_pagesize( $query ) { if (is_page_template('team_list.php') ) { $query->set( 'posts_per_page', 50 ); $query->set( 'order', 'ASC' ); return; } } add_action( 'pre_get_posts', 'team_pagesize', 1 );
Thanks in Advance
~D
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘pre_get_posts exclude widgets query’ is closed to new replies.