I want to be able to display content of posts minus the excerpt of posts so that I can separate the two. This is best illustrated at here
The site wraps a post's excerpt in a separate div to the mian content ...
<div id="top_article">
excerpt goes here ...
</div>
<div id="rest_of_article">
rest of article here ...
</div>
I am pretty sure this must be straightforward. I realize this can be done by putting divs into the write dialog, but that could get messy. So essentially I would prefer a way to place an excerpt in a specific section of a single.php file and then the content below without the excerpt. What specific code could I put in single.php that can achieve this?
Thanks
Alan.