WP-Paginate
-
hi every one
i am using below code but pagination is not working on index paging it always showing same page. plz any one can help me.
Thanks in advance.
<?php //$recent_posts = wp_get_recent_posts(); $header_posts = new WP_Query('posts_per_page=3&cat=6&offset=1' ); if ($header_posts->have_posts()) : $i=0; while ($header_posts->have_posts()) : $header_posts->the_post(); echo '<div class="leading-b left">'; ?> <div class="top_img left"><a href="<?php the_permalink(); ?>"> <?php $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) ); if ( $images ) : $total_images = count( $images ); $image = array_shift( $images ); $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail',$icon = false, $attr = 'style=width:144px;height:94px; float:left' ); echo $image_img_tag; endif; ?></a></div> <h2><a href="<?php the_permalink();?>"><?php the_title();?></a></h2> <span class="bor"><?php the_time('D') ;?> - <?php the_time('d') ;?> <?php the_time('M') ;?> </span> <span><?php the_excerpt();?></span> <p> <?php ringgirl_post();?></p> <a href="<?php the_permalink();?>">(Read more...)</a> </div> <?php endwhile; endif;?> <?php twentyeleven_content_nav( 'nav-below' ); ?> <?php if(function_exists('wp_paginate')) { wp_paginate(); } ?>
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘WP-Paginate’ is closed to new replies.