Custom Post Types don't showing in mobile theme
-
Hello,
I need some help with the mobile theme feature from Jetpack. I have three custom post types on my blog. Here are some code from my functions.php
add_action( 'pre_get_posts', 'add_my_post_types_to_query' ); function add_my_post_types_to_query( $query ) { if ( is_home() && $query->is_main_query() ){ $query->set( 'post_type', array( 'post','rezensionen', 'cookingfever', 'kurzrezension' ) ); } return $query; }
When I activate the mobile theme support, only posts are shown, but nothing from my custom post types.
Any ideas?
Thanks in advance.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom Post Types don't showing in mobile theme’ is closed to new replies.