unstop
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Having post excerpts on category/archive pages, but not main page.Got it! Thanks guys.
Forum: Fixing WordPress
In reply to: Having post excerpts on category/archive pages, but not main page.When I do this:
<div class=”storycontent”>
<?php
if ( is_category() || is_archive() ){
the_excerpt();
} else {
the_content(__(‘(more…)’));
}
?>
<.a href=”<?php the_permalink(); ?>”>Read the rest of this post…<./a>
</div><!– end STORYCONTENT –>It adds it to the entire blog, including the main page which already gives the full post. I only want it on the category/archive pages after the excerpt. Is this not where it’s supposed to go?
Thanks again for putting up with my wordpress newbie-ness. =]
Forum: Fixing WordPress
In reply to: Having post excerpts on category/archive pages, but not main page.Thanks again for the reply. One last question…
I think I know how to use the_permalink, I’m just not sure where in the code I would need to put it to get it to do what I’m trying to do?
Forum: Fixing WordPress
In reply to: Having post excerpts on category/archive pages, but not main page.That worked perfect, thanks a ton!
One other quick question, is there a way to add something like “Click here to read the whole post” after the excerpt on the category/archive pages?
Thanks again.
Forum: Fixing WordPress
In reply to: Having post excerpts on category/archive pages, but not main page.I’ve been trying to figure this one out all day but still haven’t gotten anywhere. I’ve seen many blogs doing this, so it must be at least somewhat common.
Anyone?
Exactly what I needed! Thanks.
Another quick (similar) question. I’m now looking for a plugin that will add social bookmarking links (“Digg It” and “Add to del.icio.us”) to the bottom of each post.
So far all I can find are plugins that add icons/buttons. I’m looking for a plugin that will add text links after each post (for that specific post).
Thanks again.
It worked. Thanks a lot!