//script: r2c on Call Param with Enhanced Tracking //ver 2.6 if (!defined(‘ABSPATH’)) exit; // Static phone number override – if set, will bypass all other functionality $static_phone_number = ‘8001234567’; // Set your phone number here, e.g. ‘8001234567’ // If static…Continue reading
/** * Lock user out after 5 minutes of inactivity by Amiru ウェブサイトが一定期間アイドル状態の場合にユーザーをロックする. */ add_action( ‘init’, ‘lock_user_after_inactivity’ ); function lock_user_after_inactivity() { // Check if the user is logged in if ( is_user_logged_in() ) { // Get the current user ID…Continue reading
add_action(‘charitable_campaign_content_loop_after’, ‘charitable_add_campaign_status_in_campaigns_shortcode’); function charitable_add_campaign_status_in_campaigns_shortcode( $campaign = false, $view_args = array() ) { if ( ! empty( $campaign->get_status() ) ) { echo ‘ ‘ . $campaign->get_status() . ‘ ‘; } }Continue reading