Remove the Post Info Function

Table Of Contents

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 snippet provided below allows for customizing the Post Info in XHTML themes. For those who are using a HTML5 (Pro) theme, please refer to the Entry Header customization code snippets.

Here is the code to eliminate the post info from your website:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Remove the post info function
remove_action( 'genesis_before_post_content', 'genesis_post_info' );

Additional Resources #

If you need more information and resources regarding shortcodes and their corresponding attributes, please refer to the Shortcode Reference page.

What are your feelings