Viewing 1 replies (of 1 total)
  • call this if(function_exists('wp_page_numbers')) { wp_page_numbers(); } after you finish the_loop ??

    for example:

    <?php get_header();
    create_home();
    function create_home(){
       if (have_posts()) : while (have_posts()) : the_post();
         //do your thing
       endwhile; endif;
    
       if(function_exists('wp_page_numbers')) { wp_page_numbers(); }
    } //close function
    get_sidebar();
    get_footer();
    ?>

    Make sure you have activated the plugin, and that you have configured it to your liking.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP Page Numbers] Remove wp_pagenumbers on top’ is closed to new replies.