Skip to content

Instantly share code, notes, and snippets.

@edinaldohvieira
Forked from gmmedia/page-something.php
Created October 8, 2021 23:50
Show Gist options
  • Save edinaldohvieira/69742faf02faf77f9fc33908e4d868f7 to your computer and use it in GitHub Desktop.
Save edinaldohvieira/69742faf02faf77f9fc33908e4d868f7 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