Question

This is my category page code

<--Featured Post start-->

<?php 
$count = 1;
if (have_posts()) : while (have_posts()) : the_post(); if($count == 1) : ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title=""><?php the_title(); ?></a>

<--Featured Post start-->
<?php else : ?>

<--Rest of Posts -->

<a href="<?php the_permalink() ?>" rel="bookmark" title=""><?php the_title(); ?></a>

<?php if (function_exists('wp_pagenavi')) wp_pagenavi(); else { ?>
<?php } ?>

i dont want featured post to be display after first page, how to prevent ?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with wordpress.stackexchange
scroll top