Last active
April 23, 2016 04:37
-
-
Save jodzeee/d5f983ef225916089215b83ba50f0b8f to your computer and use it in GitHub Desktop.
Add CPT (product) functionality to Genesis Featured Post Combo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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