Title: texto's Replies | WordPress.org

---

# texto

  [  ](https://wordpress.org/support/users/texto/)

 *   [Profile](https://wordpress.org/support/users/texto/)
 *   [Topics Started](https://wordpress.org/support/users/texto/topics/)
 *   [Replies Created](https://wordpress.org/support/users/texto/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/texto/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/texto/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/texto/engagements/)
 *   [Favorites](https://wordpress.org/support/users/texto/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog only shows one post](https://wordpress.org/support/topic/blog-only-shows-one-post/)
 *  Thread Starter [texto](https://wordpress.org/support/users/texto/)
 * (@texto)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/blog-only-shows-one-post/#post-1407298)
 * My Administration > Settings > Reading is set to show 10 posts.
 * I have three posts in my blog but only the most recent is showing.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog only shows one post](https://wordpress.org/support/topic/blog-only-shows-one-post/)
 *  Thread Starter [texto](https://wordpress.org/support/users/texto/)
 * (@texto)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/blog-only-shows-one-post/#post-1407296)
 * This is the loop in my index.php. I copied it straight from the defaul theme’s
   index.php hoping that might solve my problem, but it didn’t.
 *     ```
       <?php if (have_posts()) : ?>
   
       		<?php while (have_posts()) : the_post(); ?>
   
       			<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
       				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
       				<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
   
       				<div class="entry">
       					<?php the_content('Read the rest of this entry &raquo;'); ?>
       				</div>
   
       				<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
       			</div>
   
       		<?php endwhile; ?>
   
       		<div class="navigation">
       			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
       			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
       		</div>
   
       	<?php else : ?>
   
       		<h2 class="center">Not Found</h2>
       		<p class="center">Sorry, but you are looking for something that isn't here.</p>
       		<?php get_search_form(); ?>
   
       	<?php endif; ?>
       ```
   
 * In my blog template I have the following code:
 *     ```
       <?php
       /*
       Template Name: Blog
       */
   
       // Which page of the blog are we on?
       $paged = get_query_var('paged');
       query_posts('cat=-0&paged='.$paged);
   
       // Make posts print only first part with a link to rest of the post.
       global $more;
       $more = 0;
   
       //load index to show blog
       load_template(TEMPLATEPATH . '/index.php');
       ?>
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)