// displays the page title
//thematic_page_title();
$current_tag = single_tag_title('',false);
$page_title ='';
$page_title .='
// action hook for placing content below the category loop
thematic_below_categoryloop();
// create the navigation below the content
//thematic_navigation_below();
?>
'; $page_title .= $current_tag; $page_title .='
'; echo $page_title; // create the navigation above the content //thematic_navigation_above(); // action hook for placing content above the category loop thematic_above_categoryloop(); // action hook creating the category loop //thematic_categoryloop(); $page = get_page_by_title( $current_tag ); $billed = $page->ID; $size = 'medium'; ?>
echo get_the_post_thumbnail( $billed, $size);?>
// The Query
$page = get_page_by_title( $current_tag );
$content = apply_filters('the_content', $page->post_content);
echo $content;
?>