I'm trying to put the page name at the top of the sidebar. Here's my code:
function page_title() {
?><div class="sidebar_text"><?php wp_title(); ?></div>
<?php
}
add_action('thematic_abovemainasides','page_title')
It's the first time I've tried writing my own function...I know it's simple but I can't seem to find what's wrong with it. What am I missing?