/** * @param array $customer_args Arguments for Customer. * @param SimplePay\Core\Abstracts\Form $form Form instance. * @param array $deprecated Empty array. * @param array $form_values Values of named fields in the payment form. * @return $args */ add_filter( ‘simpay_get_customer_args_from_payment_form_request’, function( $args,…Continue reading
add_filter( ‘wpcode_snippet_output_js’, function( $code ) { $code = str_replace( ‘’, ”, $code ); return $code; });Continue reading
//* Add Excerpt support to Pages in Genesis add_post_type_support( ‘page’, ‘excerpt’ );Continue reading
// Schedule daily cron jobs for upcoming and past events if (!wp_next_scheduled(‘update_upcoming_events_cron_hook’)) { wp_schedule_event(time(), ‘daily’, ‘update_upcoming_events_cron_hook’); } if (!wp_next_scheduled(‘update_past_events_cron_hook’)) { wp_schedule_event(time() + 60, ‘daily’, ‘update_past_events_cron_hook’); } // Attach functions to the cron hooks add_action(‘update_upcoming_events_cron_hook’, ‘update_upcoming_events_cron_function’); add_action(‘update_past_events_cron_hook’, ‘update_past_events_cron_function’); // Add a…Continue reading
add_action( ‘shutdown’, ‘advads_schedule_order_notes_to_set_actions_run’ ); /** * Schedule the order notes to set actions run cron event. * * @return void */ function prefix_schedule_order_notes_to_set_actions_run() { // This option is added when no more notes can be found. if ( get_option( ‘prefix_use_order_notes_to_set_actions_run’…Continue reading
add_action( ‘admin_footer’, ‘prefix_mailchimp_stop_sync’ ); /** * Stop the Mailchimp sync from running. * This is a temporary function to stop the sync from running and can be deleted once the sync is stopped. * * @return void */ function prefix_mailchimp_stop_sync()…Continue reading
// 目次からの削除を行うjsの読み込み行う function add_preonly_script() { wp_enqueue_script(‘custom-script’, get_stylesheet_directory_uri() . ‘/js/pre-only.js’, array(‘jquery’), ”, true); } add_action(‘wp_enqueue_scripts’, ‘add_preonly_script’); // パラメータによってclass名の差し替え function custom_preonly($content) { // 現在のURLを取得 $current_url = “http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]”; // URLに’pre’が含まれるかチェック if (strpos($current_url, ‘pre’) !== false) { $content = str_replace(‘ pre_only’, ”, $content); }…Continue reading