Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

Save WenLiangTseng/6051589 to your computer and use it in GitHub Desktop.
wordpress-改變 the Loop 的 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