hello.
on one of my pages (not the blog/posts page) i've decided to add a line of php code that will insert my most recent blog post into that page. i installed the "exec-php" plugin so that i could insert the PHP into my HTML page.
all is working well, except that the post appears under all other content. i would like to have the post at the top of my page and still be able to add other content (html content) under that post.
this is what i have put into the HTML of my page:
Most Recent Post
<?php query_posts('showposts=1'); ?>
This is text. I want this text under the post, but for some reason it's going above the post. see?
i've tried to add breaklines as well or <p> to break up the lines and put them in the order that i'm intending but it didn't work.
any ideas?
thanks very much.