Remove the Header Widget Area

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

Here is the code needed to remove the header widget area from your site:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Remove the header right widget area
unregister_sidebar( 'header-right' );
What are your feelings