my index.php contains the_content, but i'm still getting just the excerpts.
i tried adding the following inside the loop, which i found in the codex:
global $more; // Declare global $more (before the loop).
$more = 1; // Set (inside the loop) to display all content, including text below more.
the_content();
now i am getting the text content of the posts, but not the images in the posts.
my goal is very simple: to display 1 sticky post on my homepage. i don't care whether the homepage is:
- a Page, with a function or tag which displays 1 post (which should be the sticky automatically)
- or, the standard blog homepage, set to show just 1 post (which should be the sticky automatically)
- or, the standard blog set to show stickies only. I tried inserted this into the loop:
<?php query_posts(array('post__in'=>get_option('sticky_posts'))); ?>
which actually works great, but still no images.
- or, a Page, with a function or tag which explicitly displays 1 sticky