Hi ! I just started my first wordpress blog, and have some problems ? with category and archive. Blog is some kind of entertainment dump ( like timekiller.com and simular sites ) Now, problem is in this...When I write posts, I include a link, photo and description. I have setuped blog to show 1 day ( some 10 posts ) I would like to have previous posts ( days ) links on the bottom. Those should be links from archives, but problem is that archive is showing only plain text, and not html ( links, photos etc. ) Is there anyway I could make archive to show daily posts, but to look same as those on homepage ?
Can you tell the blog url. Most probably it is related to the particular theme you are using. Can you switch over to default wordpress theme and check your site. If it works, then you may have either edit the present theme files or choose a different theme.
Yes, this theme is reason why I have issues. I am not quite ready to change this theme cause I find it best for this type of site. Where in this theme I should look to fix this problem ?
Here is the code of category templae, what should I change ( if it is possible ) in it to solve the problem ? <div class="narrowcolumn"> <?php include(TEMPLATEPATH . '/top-menu.php'); ?> <!-- CONTENT --> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="entry"> <?php the_excerpt(); ?> <p class="postmetadata"> <?php the_time('F jS, Y') ?><br /> <?php _e('Categories:'); ?> <?php the_category(', ') ?> . <?php _e('Author:'); ?> <a href="<?php the_author_url(); ?>"><?php the_author(); ?></a> . <?php _e('Comments:'); ?> <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> <?php edit_post_link('Edit this entry', '', ''); ?></p> </div> </div> <?php endwhile; ?> <div class="navigation"><?php posts_nav_link('','','Previous page') ?> <?php posts_nav_link('','Next page','') ?></div> <?php else : ?> <div class="post"> <h2><?php _e('Not Found'); ?></h2> <div class="entry"><?php _e('Sorry, but you are looking for something that isn't here.'); ?></div> </div> <?php endif; ?> <!-- END CONTENT --> </div> <?php get_footer(); ?> Code (markup):
OK, I found it For anyone who could have simular problem - you have to change <?php the_excerpt(); ?> to <?php the_content(); ?> in both presentation/themes editor/category.template.php and in presentation/themes editor/archive.template.php