Upcoming events on front_page
-
I’d like to have full posts of upcoming events on the front_page.
I tried with the following code snippet in functions.php which works somehow. The contents of the events are listed, but I the categories and tags aren’t shown. I’m using the omega theme.
add_action('pre_get_posts','my_alter_query',5); function my_alter_query($query){ if( $query->is_main_query() && is_front_page ){ $query->set('post_type', array('event')); } }
How do I display the upcoming events on the front_page with tags and categories? Or how can I change what is shown in the main_query?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Upcoming events on front_page’ is closed to new replies.