Skip to content

Instantly share code, notes, and snippets.

@gmmedia
Last active October 8, 2021 23:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gmmedia/cda52b249e2d163c75c56894568d3899 to your computer and use it in GitHub Desktop.
Save gmmedia/cda52b249e2d163c75c56894568d3899 to your computer and use it in GitHub Desktop.
Kadence page template with the_content
<?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