Skip to content

Instantly share code, notes, and snippets.

@sc0ttkclark
Last active October 8, 2019 20:20
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 sc0ttkclark/49405d66c6318f8dbac1d8ec5209d4ec to your computer and use it in GitHub Desktop.
Save sc0ttkclark/49405d66c6318f8dbac1d8ec5209d4ec to your computer and use it in GitHub Desktop.
Support HTML descriptions on Tickets for the Event Tickets plugin
<?php
// Allow (safe) HTML for ticket descriptions.
add_action( 'tribe_tickets_ticket_add', function( $post_id, $ticket, $data ) {
$ticket->description = isset( $data['ticket_description'] ) ? wp_kses_post( $data['ticket_description'] ) : '';
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment