Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slimndap/08bebb9e0a38af61cd61 to your computer and use it in GitHub Desktop.
Save slimndap/08bebb9e0a38af61cd61 to your computer and use it in GitHub Desktop.
Changes the default Events header on the production details page.
<?php
/**
* Changes the default Events header on the production details page.
*
* @param string $header The default Events header.
* @return string The new Events header.
*/
function wpt_change_events_on_production_page_header($header) {
return '<h4>Showtimes</h4>';
}
add_filter('wpt_production_page_events_header', 'wpt_change_events_on_production_page_header');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment