Hi
Recently i changed my site from pixelpost to wordpress.
Archive and category pages dose not show the photos how can i modify these pages ?
And what is the best solution (like plugin or child theme) to have a gallery?
ThemeShaper Forums » Thematic
Archive and category dose not show the photos
(2 posts)-
Posted 1 year ago #
-
I am not sure if this is what you mean, but hope this helps:
1) Your category and archive pages may be using the_excerpt (as opposed to the_content). the_excerpt displays the first 55 words of the post's content without HTML tags and graphics (they are removed for the excerpt).
http://codex.wordpress.org/Function_Reference/the_excerpt2) You can enable the post thumbnails:
add the following to the functions.php of your theme:
add_theme_support( 'post-thumbnails' );then the "Featured Image" can be called using:
<?php the_post_thumbnail(); ?>A comprehensive example:
http://themeshaper.com/forums/topic/post-thumbnail-with-permalink-1#post-132313) I like the NextGen Gallery plugin for managing and displaying images.
Posted 1 year ago #
Reply
You must log in to post.