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 hawkidoki/88cc95bd4029ed74c697d34670b78b7f to your computer and use it in GitHub Desktop.
Save hawkidoki/88cc95bd4029ed74c697d34670b78b7f to your computer and use it in GitHub Desktop.
<?php
// File: /wp-content/themes/my_theme/includes/ajax-actions.php
add_action('wp_ajax_my_action', 'hwk_ajax_my_action');
function hwk_ajax_my_action(){
global $wpdb;
//$wpdb->get_results("SELECT * FROM ...");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment