Advertisement
ethitter

Untitled

Nov 21st, 2011
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function category_homepage( $query ) {
  2. global $wp_the_query;
  3.  
  4. if ( $query->is_home() && $query == $wp_the_query ) {
  5. $query->set( 'tax_query', array( array(
  6. 'taxonomy' => 'category',
  7. 'terms' => 'homepage',
  8. 'field' => 'slug'
  9. ) ) );
  10. }
  11. }
  12. add_action( 'pre_get_posts', 'category_homepage' );
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement