Skip to content

Instantly share code, notes, and snippets.

@WenLiangTseng
Created July 22, 2013 06:00
Show Gist options
  • Select an option

  • Save WenLiangTseng/6051591 to your computer and use it in GitHub Desktop.

Select an option

Save WenLiangTseng/6051591 to your computer and use it in GitHub Desktop.
wordpress-改變query
<?php
add_action( 'pre_get_posts', 'foo_modify_query_exclude_category' );
function foo_modify_query_exclude_category( $query ) {
if ( ! is_admin() && is_main_query() && ! $query->get( 'cat' ) )
$query->set( 'cat', '-5' );
}
//簡單寫法
add_action( 'pre_get_posts', 'foo_modify_query_exclude_category' );
function foo_modify_query_exclude_category( $query ) {
$query->set( 'cat', '-5' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment