[Support request] Previous/Next links or buttons in Custom Post Type

Home Forums Support [Support request] Previous/Next links or buttons in Custom Post Type

Home Forums Support Previous/Next links or buttons in Custom Post Type

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1042893
    jonathan

    Hi,
    I was wondering if there’s a way to change the name of the link to “PREVIOUS” or “NEXT” on the pagination of a Custom Post Type. I’m using this filter:

    add_action( ‘generate_after_entry_content’, ‘tu_custom_post_type_post_nav’ );
    function tu_custom_post_type_post_nav() {
    if ( ‘transactions’ == get_post_type() ) : ?>
    <footer class=”entry-meta”>
    <?php generate_content_nav( ‘nav-below’ ); ?>
    </footer><!– .entry-meta –>
    <?php endif;
    }

    Thanks!

    Jon

    #1043137
    David
    Staff
    Customer Support

    Hi there,

    looks like you resolved this ? Let me know

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.