Can anyone tell me how to remove the wp-pagenumbers at the top,
and just see the plugin at the bottom.
What do i need to remove, and where do i find it.
http://wordpress.org/extend/plugins/wp-page-numbers/
Thank you!
Can anyone tell me how to remove the wp-pagenumbers at the top,
and just see the plugin at the bottom.
What do i need to remove, and where do i find it.
http://wordpress.org/extend/plugins/wp-page-numbers/
Thank you!
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.
You must log in to post.