ollee
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: stop post dividers appearing in RSS feedany ideas?
Forum: Fixing WordPress
In reply to: insert divider only between posts, not at the last post on a pageHi cwoodside–I think that’s EXACTLY what I’m looking for! When I try this with my code, however, it seems like I’m somehow failing to close the loop (and my whole page gets filled with divider images for an eternity until I force quit it….)
Would you ever be able to show me where I need to make these changes?
My code is included below:
<?php get_header(); ?> <div id="main"><!-- Main Start --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div id="date"><?php the_time('F jS, Y') ?></div> <a href="<?php the_permalink() ?>" rel="bookmark"><h2><?php the_title(); ?></h2></a> <br> <?php the_content(__('(more...)')); ?> <!-- E N D O F P O S T I M A G E --> <div class="divider"> </div> <!-- E N D O F P O S T I M A G E --> <?php endwhile; else: ?> <?php endif; ?> </div> <!-- Main End --> <?php get_sidebar(); ?> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: insert divider only between posts, not at the last post on a pagedansinch–no, I’m not adding the class to the posts; it’s in the template. I really want everything to be as automated as possible.
razorrich–this sounds interesting. Is there a way of adding adsense between posts but not at the last one?
Forum: Fixing WordPress
In reply to: insert divider only between posts, not at the last post on a pagestill haven’t been able to work out a way around this–anyone got any ideas?
Forum: Themes and Templates
In reply to: wp_list_pages with no childrenyep, that worked. Thanks, Jeremy!
Forum: Fixing WordPress
In reply to: insert into web pageah! thanks whooami.
Forum: Plugins
In reply to: Display images with description, thumbnail and detail pageFantastic. Thanks for your help, alakhnor.
Forum: Themes and Templates
In reply to: How to highlight a parent page item?Thanks, anshiTecch!
Forum: Plugins
In reply to: Is this possible with WordPress?As if often the way; I’ve answered my own question a few minutes after posting this. Answer: YES.
Please disregard.
Forum: Fixing WordPress
In reply to: insert into web pageyeah, I’d really like to know if it’s possible to do this also. Pasting:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_time(‘F jS, Y’) ?>” rel=”bookmark”><h2><?php the_title(); ?></h2>
<?php the_content(__(‘(more…)’)); ?>
<!– E N D O F P O S T I M A G E –>
<div class=”divider”> </div>
<!– E N D O F P O S T I M A G E –>
<?php endwhile; else: ?>
<?php endif; ?>into the page itself doesn’t seem to do anything. Anyone got any ideas?
Forum: Themes and Templates
In reply to: highlighting current page in cssyeah–sorted. thanks!