Remove the Site Description

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 description from your site:

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