Remove Entry Footer Markup

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 entry footer markup on your site:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Remove the entry footer markup (requires HTML5 theme support)
remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 );
remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
What are your feelings