Tagged Questions
3
votes
3answers
167 views
WordPress function that makes HTML safe to be sent via AJAX request
What is correct way to send HTML back to an AJAX request in WordPress?
I currently have this:
add_action( 'wp_ajax_nopriv_get-location-info', 'sc_locations_get_location_info' );
add_action( ...