Last active
August 29, 2015 14:21
-
-
Save devinsays/d503e8501d06faa2bca0 to your computer and use it in GitHub Desktop.
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 | |
/** | |
* Display upgrade notice on customizer page | |
*/ | |
function prefix_upsell_notice() { | |
// Enqueue the script | |
wp_enqueue_script( | |
'prefix-customizer-upsell', | |
get_template_directory_uri() . '/js/upsell.js', | |
array(), '1.0.0', | |
true | |
); | |
// Localize the script | |
wp_localize_script( | |
'prefix-customizer-upsell', | |
'prefixL10n', | |
array( | |
'prefixURL' => esc_url( 'https://upsell.com' ), | |
'prefixLabel' => __( 'Theme Upsell Link', 'textdomain' ), | |
) | |
); | |
} | |
add_action( 'customize_controls_enqueue_scripts', 'prefix_upsell_notice' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment