Query Posts with pagination in Wordpress

$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts( array('category_name' => 'blog', 'posts_per_page' => 5, 'paged' => $paged));

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.