Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //* Show Movies CPT entries in addition to Posts in Posts page (props Bill Erickson)
- add_action( 'pre_get_posts', 'cpt_entries_and_posts' );
- function cpt_entries_and_posts( $query ) {
- if ( $query->is_main_query() && !is_admin() && is_home() ) {
- $query->set( 'post_type', array( 'post', 'movie' ) );
- }
- }
- add_filter( 'genesis_attr_content', 'custom_attributes_content' );
- /**
- * Add the class needed for FacetWP to main element.
- *
- * Context: Posts page
- *
- * @author Sridhar Katakam
- * @link http://sridharkatakam.com/facetwp-genesis/
- */
- function custom_attributes_content( $attributes ) {
- if ( is_home() ) {
- $attributes['class'] .= ' facetwp-template';
- }
- return $attributes;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement