Skip to content

Instantly share code, notes, and snippets.

View richstrauss's full-sized avatar

Rich Strauss richstrauss

View GitHub Profile
@richstrauss
richstrauss / gp-cpt-next-previous.php
Last active December 17, 2017 15:19
GeneratePress Custom Post Type Previous/Next Navigation & Entry Meta
<?php
// Single Custom Post Type >> https://generatepress.com/forums/topic/nextprevious-post-links-on-cpt/#post-326390
add_action( 'generate_after_entry_content', 'tu_custom_post_type_post_nav' );
function tu_custom_post_type_post_nav() {
if ( 'my-post-type' == get_post_type() ) : ?>
<footer class="entry-meta">
<?php generate_entry_meta(); ?>
<?php if ( is_single() ) generate_content_nav( 'nav-below' ); ?>