Remove Post Navigation

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 post navigation in Genesis HTML5 (recent) themes:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Remove the post navigation (requires HTML5 theme support)
remove_action( 'genesis_entry_content', 'genesis_do_post_content_nav', 12 );
What are your feelings