Custom Post Types appear in widget, but not on page
-
I’m using Events Manager for Events on my site and would like to be able to use this plugin to feature the events. I set up the fpw_post_types filter for events and they now display in the widget and I can choose the event I want to feature. However, nothing shows up on the front end. The events I’m choosing do have excerpts and images.
The site is online here: https://www.castinehistoricalsociety.org/
I’m using the plugin in two places on the homepage already and it’s working fine — but just not with events.My filter looks like this:
add_filter( 'fpw_post_types', 'fpw_add_post_type_to_feature' ); function fpw_add_post_type_to_feature( $post_types ) { $post_types[] = 'event'; return $post_types; }
What could I be missing?
Thank you for any help!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Custom Post Types appear in widget, but not on page’ is closed to new replies.