Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #82732
    radeko
    Participant

    Hi I would like to move this part of the post

    ← Previous Previous post:
    Next → Next post:

    to the very top of the post (if possible above the post title)

    please guide me how to accomplish it

    (I’m already using child theme)

    thank you
    Radek

    #82736
    Mahesh
    Keymaster

    Hi @radeko,

    In child theme’s function.php add the following codes,

    add_action( 'init' , 'catchresponsive_child_move_single_post_nav' );
    function catchresponsive_child_move_single_post_nav() {
            remove_action( 'catchresponsive_after_post', 'catchresponsive_post_navigation', 10 );
    	add_action( 'catchresponsive_before_post_container', 'catchresponsive_post_navigation', 5);
    }

    Regards,
    Mahesh

    #82738
    radeko
    Participant

    great!
    thank you Mahesh!

    best regards
    Radek

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘moving post navigation (previous and next) to the very top’ is closed to new replies.