Hur får man WordPress att visa hela artiklar om man använder ett tema (Giraffe2 exempelvis) som bara visar sammanfattningar för andra kategorier och arkiv?
Se svaret från forumet:
————————————————————————–
Falke, I have not used the Giraffe theme, but the following should help:Open your archive.php file. Find a line that says:
< ?php the_excerpt() ?>
and replace it with:
< ?php the_content(); ?>
The first line (the_excerpt) tells WordPress to display only the summary of your articles. The second line (the_content) tells WordPress to display a full page of your article (which will display the whole article unless your article is broken up into multiple pages using
Pages: 1 2