/ Published in: PHP

After querying posts the paging (Next/Previous) may not work. Use this to restore.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("paged=$paged"); ?>
Comments
