Show post_type "event" together with "post" not working
-
Hello,
i show the events thogether with my other blogposts on my blog site.
In that blog loop i can use that:$args = array_merge( $wp_query->query, array( 'post_type' => array('post','event') )); query_posts( $args );
…
Ok that works!
But I want to show the events also togheter in the default wp sidebar widget “Recent posts”. But there it don’t work!
functions.php: function mywidget_posts_args($query) { $args = array_merge( $query, array( 'post_type' => array('post','event') )); return $args; } add_filter( 'widget_posts_args', 'mywidget_posts_args');
I use this filter implemented in default_widgets.
The problem is that if within the array of post_type stands ‘post’; only posts are shown. If I wrote only events, than only the events are shown. But I need posts and events on that widget.Have someone an idea what the problem is?
Thank you many time!
Best regards,
Martin
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Show post_type "event" together with "post" not working’ is closed to new replies.