Skip to content

Snippet: Add Subheading Under Logo

function my_custom_header_text() { ?>
    <div class="my-custom-class clr">Some Text, could be anything though</div>
<?php }
add_action( 'wpex_hook_site_logo_inner', 'my_custom_header_text', 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