This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* AJAX Custom Signup | |
*/ | |
add_action('wp_ajax_es_mepr_signup_toggle_form', 'es_mepr_signup_toggle_form_callback'); | |
add_action('wp_ajax_nopriv_es_mepr_signup_toggle_form', 'es_mepr_signup_toggle_form_callback'); | |
function es_mepr_signup_toggle_form_callback() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global $wpdb; | |
$today_start = date('Y-m-d H:i:s', strtotime('yesterday 9pm')); | |
$today_end = date('Y-m-d H:i:s', strtotime('today 9pm')); | |
$SQL_ACF_TODAY = "SELECT $wpdb->posts.id FROM $wpdb->posts | |
LEFT JOIN $wpdb->postmeta | |
ON $wpdb->postmeta.post_id = $wpdb->posts.ID | |
WHERE 1 = 1 | |
AND $wpdb->posts.post_type = 'post' | |
AND $wpdb->posts.post_status = 'publish' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* BuddyBoss Country Field | |
* Create and autocomplete dropdown "Country" field | |
* After the field has been created, delete this code | |
*/ | |
function bp_add_custom_country_list() | |
{ |
OlderNewer