• hi,

    I’m using 320press theme and i want to make a blog for my school.
    I would like to display the posts of a certain category and i have trouble with the pagination and query

    archieve.php code

    <?php get_header(); ?>
    
    			<div id="content" class="clearfix row">
    
    				<div id="main" class="col-sm-8 clearfix" role="main">
    
    					<div class="page-header">
    					<?php if (is_category()) { ?>
    						<h1 class="archive_title h2">
    							<span><?php _e("Posts Categorized:", "wpbootstrap"); ?></span> <?php single_cat_title(); ?>
    						</h1>
    					<?php } elseif (is_tag()) { ?>
    						<h1 class="archive_title h2">
    							<span><?php _e("Posts Tagged:", "wpbootstrap"); ?></span> <?php single_tag_title(); ?>
    						</h1>
    					<?php } elseif (is_author()) { ?>
    						<h1 class="archive_title h2">
    							<span><?php _e("Posts By:", "wpbootstrap"); ?></span> <?php get_the_author_meta('display_name'); ?>
    						</h1>
    					<?php } elseif (is_day()) { ?>
    						<h1 class="archive_title h2">
    							<span><?php _e("Daily Archives:", "wpbootstrap"); ?></span> <?php the_time('l, F j, Y'); ?>
    						</h1>
    					<?php } elseif (is_month()) { ?>
    					    <h1 class="archive_title h2">
    					    	<span><?php _e("Monthly Archives:", "wpbootstrap"); ?>:</span> <?php the_time('F Y'); ?>
    					    </h1>
    					<?php } elseif (is_year()) { ?>
    					    <h1 class="archive_title h2">
    					    	<span><?php _e("Yearly Archives:", "wpbootstrap"); ?>:</span> <?php the_time('Y'); ?>
    					    </h1>
    					<?php } ?>
    					</div>
    
    					<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    					<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">
    
    						<header>
    
    							<h3 class="h2"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    
    							<p class="meta"><?php _e("Posted", "wpbootstrap"); ?> <time datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time(); ?></time> <?php _e("by", "wpbootstrap"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "wpbootstrap"); ?> <?php the_category(', '); ?>.</p>
    
    						</header> <!-- end article header -->
    
    						<section class="post_content">
    
    							<?php the_post_thumbnail( 'wpbs-featured' ); ?>
    
    							<?php the_excerpt(); ?>
    
    						</section> <!-- end article section -->
    
    						<footer>
    
    						</footer> <!-- end article footer -->
    
    					</article> <!-- end article -->
    
    					<?php endwhile; ?>	
    
    					<?php if (function_exists('page_navi')) { // if expirimental feature is active ?>
    
    						<?php page_navi(); // use the page navi function ?>
    
    					<?php } else { // if it is disabled, display regular wp prev & next links ?>
    						<nav class="wp-prev-next">
    							<ul class="pager">
    								<li class="previous"><?php next_posts_link(_e('&laquo; Older Entries', "wpbootstrap")) ?></li>
    								<li class="next"><?php previous_posts_link(_e('Newer Entries &raquo;', "wpbootstrap")) ?></li>
    							</ul>
    						</nav>
    					<?php } ?>
    
    					<?php else : ?>
    
    					<article id="post-not-found">
    					    <header>
    					    	<h1><?php _e("No Posts Yet", "wpbootstrap"); ?></h1>
    					    </header>
    					    <section class="post_content">
    					    	<p><?php _e("Sorry, What you were looking for is not here.", "wpbootstrap"); ?></p>
    					    </section>
    					    <footer>
    					    </footer>
    					</article>
    
    					<?php endif; ?>
    
    				</div> <!-- end #main -->
    
    				<?php get_sidebar(); // sidebar 1 ?>
    
    			</div> <!-- end #content -->
    
    <?php get_footer(); ?>

    how can i display posts of ‘protoselido’ category with pagination in my homepage.php template?

    Thanks

Viewing 1 replies (of 1 total)
  • I would recommend taking a look at the WP_Query codex page. If you look in the contents sidebar you can see that there is a section on both returning categories and pagination. If you do use a custom query do not forget to reset the query at the end of the loop with the wp_reset_postdata() function.

Viewing 1 replies (of 1 total)
  • The topic ‘Theme Homepage Category archive’ is closed to new replies.