responsive_mobile_inline_js_footer
Load inline js in the footer.
Description
responsive_mobile_inline_js_footer();
Usage
if ( !function_exists( 'responsive_mobile_inline_js_footer' ) ) { require_once '/includes/functions-front.php'; } // NOTICE! Understand what this does before running. $result = responsive_mobile_inline_js_footer();
Defined (1)
The function is defined in the following location(s).
- /includes/functions-front.php
- function responsive_mobile_inline_js_footer() {
- $responsive_mobile_options = responsive_mobile_get_options();
- if( !empty( $responsive_mobile_options['responsive_mobile_inline_js_footer'] ) ) {
- echo '<!-- Custom Scripts -->' . "\n";
- echo $responsive_mobile_options['responsive_mobile_inline_js_footer'];
- echo "\n";
- }
- }