I want to add a "callout" type item at the top of the sidebar (sort of an "About this site" blurb, that'll appear in a styled box). I'm wondering what the best way to do this is.
I'm thinking I should create a page, then use something that's a cross between query_posts():
query_posts('pagename=about');
and get_posts():
$result = get_posts('pagename=about');
(though of course that won't work - right?)
Anyway, I want to retrieve a single page into a result array, then I can display the relevant parts in the sidebar. This way the blog owner can edit the content without having to dive into the template files.
I'd prefer not to use a plugin - is there some way to do this with standard template tags?
- Bob