BakerMan

Basic demo: using an action to insert markup in single-event

Jul 23rd, 2013
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. add_action('tribe_events_single_event_before_the_content', 'my_custom_ticketing_form');
  2.  
  3. function my_custom_ticketing_form() {
  4.     echo '<p> Replace with the markup for your ticketing form </p>';
  5. }
Advertisement
Add Comment
Please, Sign In to add comment