Hi.
How can i enable images in template fils: category.php, archive.php and tag.php, they doo't want to show.
They are showing when i clik home - index.php
How can i fix this problem?
Thanx
Hi.
How can i enable images in template fils: category.php, archive.php and tag.php, they doo't want to show.
They are showing when i clik home - index.php
How can i fix this problem?
Thanx
theme?
link to your site?
the category.php, archive.php and tag.php might have the_excerpt() in their code isntead of the_content()
I'm using "Twenty Ten 1.1 by the WordPress team" theme, on ma computer.
If you like, i can put it to the live server.
I'm new to coding and i don't know how to use http://codex.wordpress.org/Function_Reference/the_excerpt
Thanx for help.
for twenty ten, the code is in loop.php;
edit loop.php, and find this line (it occurs twice in loop.php - change both occurrences):
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
change it to:
<?php if ( is_search() ) : // Only display excerpts for search. ?>
this will then leave the excerpts (which are without images and formatting) just for the search results.
It works!
Thanx and have a nice day!
Martin
This topic has been closed to new replies.