Unlock your potential with a Pro Membership
Here is where you propel your career forward. Come join us today. Learn more.
Entry Footer – Post Meta
Lab: The Loop Part 2 – Developer’s Guide to Customizing Genesis
Video Runtime: 14:07
At the bottom of each article, you are used to seeing the post meta. This is where Genesis, by default, renders out the post’s category(ies) and tag(s). This functionality occurs in the function genesis_post_meta
in the file "genesis/lib/structure/post.php"
. Part of this function, just like with the post info, the shortcodes are being filtered by an event, which is named genesis_post_meta
, and then processed through the WordPress Core function do_shortcode()
.
This is the filtering event which fires to call any functions that are pre-registered to the event name genesis_post_meta
:
$filtered = apply_filters( 'genesis_post_meta', ' ' );
Within Genesis, it has registered the WordPress Core function as follows:
do_shortcode()
: add_filter( 'genesis_post_meta', 'do_shortcode', 20 );
In this episode, not only are you walking through how the post meta is being processed, you’ll also walk through the processing for the filter to ensure you understand how the shortcodes are being converted over into the HTML that you see on the front-end in the browser. In addition, you’ll be customizing the post meta too.
You get WET when you swim. Stay DRY when you code.
Episodes
Total Lab Runtime: 02:28:53
- 1 Before Entry Content Hook - genesis_before_entry_contentpro 07:13
- 2 Entry Content Overviewpro 05:49
- 3 Entry Content - Post Imagepro 10:43
- 4 Real Refactoring Examplefree 10:46
- 5 Entry Content - Post Contentpro 12:16
- 6 Entry Content - Post Content Navigationpro 13:31
- 7 Entry Content - Post Permalinkpro 09:35
- 8 After Entry Contentpro 04:16
- 9 Entry Footer - Overviewpro 07:14
- 10 Entry Footer - Post Metapro 14:07
- 11 After Entry - Overviewpro 06:01
- 12 Reorder Author Box & After Entry Widget Areafree 08:25
- 13 After Entry Widget Areapro 11:30
- 14 Turning on the Adjacent Entry Nav - Previous and Nextpro 10:09
- 15 Customize the Previous and Nextpro 06:25
- 16 After the Loop - Archive Posts Navigationpro 07:26
- 17 The Loop Else - No Posts Foundpro 01:31
- 18 Wrap it Upfree 01:56