StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 03-25-2010, 10:00 AM
Debra's Avatar
Debra Debra is offline
Community Moderator
 
Join Date: Oct 2009
Location: Ontario, Canada
Posts: 13,365
Default

backup first!


change this


PHP Code:
<div class="hpmain">

<div class="hpblock">
<h3><?php echo cat_id_to_name(get_theme_mod('featured_main')); ?></h3>

<?php $recent = new WP_Query("cat=".get_theme_mod('featured_main')."&s howposts=".get_theme_mod('featured_main_num')); while($recent->have_posts()) : $recent->the_post();?>
to this
PHP Code:
<div class="hpmain">

<div class="hpblock">
<h3><?php echo cat_id_to_name(get_theme_mod('featured_main')); ?></h3>


            <?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1query_posts("cat=".get_theme_mod('featured_main')."&showposts=".get_theme_mod('featured_main_num')."&paged=$page"); while ( have_posts() ) : the_post() ?>
and add
PHP Code:
<?php require(TEMPLATEPATH '/includes/post-nav-block.php'); ?>
here

<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(__('Read more'));?>

<hr/>

<?php endwhile; ?>

HERE


If you use something like this
http://lesterchan.net/portfolio/prog...p/#wp-pagenavi

to create the numerical navigation add that code where the post-nav-block is

Last edited by Debra; 03-25-2010 at 10:04 AM.
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Better pagination manoffitness General Discussion 1 02-16-2010 07:30 AM
Pagination for better seo manoffitness General Discussion 1 01-24-2010 08:33 AM


All times are GMT -5. The time now is 07:39 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.