• Resolved gamejump

    (@gamejump)


    hello guys thanks for the theme

    i need one help here

    well i am adding page numbers to the post and its appearing below the
    related post and after that we can see page no.

    so can you tell me the code which will help to make it above the post

    let me know guys
    thanks again

Viewing 1 replies (of 1 total)
  • Theme Author WP Puzzle

    (@wppuzzle)

    @gamejump,

    Try add this code to functions.php (use custom child theme or plugin FunctionsPHP). It will appearing pagination above the related posts. There are not possibility change pagination position without custom coding.

    
    function myslug_wp_link_pages( $args ){
    	remove_action( 'the_content', 'basic_social_share_buttons', 10 );
    	add_action( 'the_content', 'basic_social_share_buttons', 1 );
    }
    add_filter( 'after_setup_theme', 'myslug_wp_link_pages', 30 );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Page Numbers below Post’ is closed to new replies.