Skip to content

Instantly share code, notes, and snippets.

@jodzeee
Last active April 23, 2016 04:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jodzeee/d5f983ef225916089215b83ba50f0b8f to your computer and use it in GitHub Desktop.
Save jodzeee/d5f983ef225916089215b83ba50f0b8f to your computer and use it in GitHub Desktop.
Add CPT (product) functionality to Genesis Featured Post Combo
add_filter( 'gfpc_query_args_gfpc-widget-13', 'gd_filter_home_blog_posts', 20, 2 );
function gd_filter_home_blog_posts( $args, $instance ) {
$args['post_type'] = array( 'page', 'product');
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment