In Genesis, Entry Footer on single Posts is wrapped in <footer class="entry-footer"> and </footer>.
For entries in single CPT (Custom Post Type) pages and CPT archives, however, entry footer content does not get wrapped in the .entry-footer markup.
The reason for this is the if ( 'post' === get_post_type() ) conditional in genesis_entry_footer_markup_open() and genesis_entry_footer_markup_close() functions defined in genesis/lib/structure/post.php.
In this article I share how we can remove the above entry footer markup functions hooked to genesis_entry_footer and add our own with modified if condition.
Add the following in child theme's functions.php:
To view the full content, please sign up for the membership.
Already a member? Log in below or here.
This has bothered me for quite some time Sridhar!
Thanks!