Skip to content

Snippet: Add Custom HTML/PHP inside Page Header Title

// Add custom code inside main page header
add_action( 'wpex_hook_page_header_inner', function() { ?>
	
	Your custom code here

<?php }, 40 );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top