I have the following problem:
I have created a custom post type matratze
and currently besides the custom posts no other posts exist. Hence, nothing is being displayed under the recent posts.
The custom post type looks like the following:
[custom post]
My recent posts do not get displayed:
[main homepage]
I tried the following:
add_filter( 'pre_get_posts', 'my_get_posts' );
function my_get_posts( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( 'post_type', array( 'post', 'page', 'matratze' ) );
return $query;
}
Any suggestions what I am doing wrong?
I appreciate your replies!