Remove the Site Title

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Here is the code to remove the site title from your site:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Remove the site title
remove_action( 'genesis_site_title', 'genesis_seo_site_title' );
What are your feelings