Skip to content

Instantly share code, notes, and snippets.

@luisabarca
Created November 22, 2011 15:44
Show Gist options
  • Save luisabarca/a36126c469156e9c182d to your computer and use it in GitHub Desktop.
Save luisabarca/a36126c469156e9c182d to your computer and use it in GitHub Desktop.
Show custom post types in a category
<?php
add_filter('pre_get_posts', 'init_category');
function init_category($wp_query)
{
$vars = $wp_query->query_vars;
if (is_category() && !array_key_exists('portfolio', $vars)) {
$vars = array_merge( $vars, array('post_type' => 'any') );
$wp_query->query_vars = $vars;
} // endif
return $request;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment