Last active
June 22, 2021 14:55
-
-
Save gmmedia/c5f093c889207b7d6aa557b485d4d486 to your computer and use it in GitHub Desktop.
Kadence page template wp_footer
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 | |
/** | |
* Template Name: Tools | |
* | |
* @package kadence | |
*/ | |
namespace Kadence; | |
add_action('wp_footer', 'j0e_add_to_footer'); | |
function j0e_add_to_footer(){ | |
?> | |
<script src="/wp-content/.../js/xxxx.js"></script> | |
<?php | |
}; | |
get_header(); | |
kadence()->print_styles( 'kadence-content' ); | |
/** | |
* Hook for everything, makes for better elementor theming support. | |
*/ | |
do_action( 'kadence_single' ); | |
get_footer(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment