Remove the Post Meta Function

The following snippet should only be used for sites using XHTML themes and Genesis versions earlier than 3.0.0. XHTML is no longer used in Genesis 3.0.0+.

Also, unless otherwise indicated, the code snippet should be placed into your theme’s functions.php file.

The code snippets provided below can be utilized to eliminate the Post Meta in XHTML themes. For those using a HTML5 (Pro) theme, please refer to the Entry Footer snippet.

Here is the code that can be used to remove the post meta from your website:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Remove the post meta function
remove_action( 'genesis_after_post_content', 'genesis_post_meta' );
What are your feelings