Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created August 2, 2013 20:25
Show Gist options
  • Save ckpicker/6143167 to your computer and use it in GitHub Desktop.
Save ckpicker/6143167 to your computer and use it in GitHub Desktop.
Add Intro Text to 'My Events' Page in Community
add_action('tribe_events_community_list_before_template', 'customize_community_list_intro_text', 10);
function customize_community_list_intro_text() {
echo '<p>Your HTML code to insert before the list will go here.</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment