earphinteractive
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: single.php showing multiple postsTheme I coded myself….
Forum: Fixing WordPress
In reply to: single.php showing multiple postsOk, I’ve read some posts on how the single.php template works and it makes sense, and I’ve also looked at the “Default” single.php template, but having a hard time figuring out what’s wrong.
I’m getting multiple posts when single.php is used. A friend mentioned that I should “limit” the posts to 1 on that page, but not sure how. Is that the right approach?
Forum: Themes and Templates
In reply to: How does single.php work?Ah.. I’m glad I found this post. Makes sense now.
My problem is that I have multiple posts showing up on my single.php. What am I missing?
Forum: Fixing WordPress
In reply to: How Do You Make The Link Description Display Beow an ImageIs it possible to list links/bookmarks like I did with “recent” posts? I haven’t seen a way to do it like this yet.
<?php query_posts ('showposts=10'); ?> <?php while ( have_posts() ) : the_post(); ?> <li> <p class="recent-title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></p> <p class="recent-date"><?php the_time('F jS, Y'); ?></p> </li> <?php endwhile; ?>
Viewing 4 replies - 1 through 4 (of 4 total)