Last active
October 8, 2021 23:50
-
-
Save gmmedia/cda52b249e2d163c75c56894568d3899 to your computer and use it in GitHub Desktop.
Kadence page template with the_content
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: something | |
* | |
* @package kadence | |
*/ | |
namespace Kadence; | |
function j0e_something($content) { | |
return "something" . $content; | |
} | |
add_filter( 'the_content', 'j0e_something'); | |
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