Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Fix for iFeature / CyberChimps themes where a bogus URL like
- * example.com/?post_id=9999 is being displayed above event pages
- * (normally when Default Page Template has been selected).
- *
- * Do not add this to the main theme (in the case of iFeature) but
- * place it within your child theme's functions.php file.
- */
- add_filter('the_title', 'event_title_fix', 100);
- function event_title_fix($title) {
- if (empty($title) && tribe_is_event_query()) return ' ';
- return $title;
- }
Advertisement
Add Comment
Please, Sign In to add comment