How can I change the title on a page so its the same as on a blog page.
At the moment on a blog page the title is displayed with:
<div class="page-title-wrap">
<div class="container clearfix">
<?php
if( function_exists( 'attitude_breadcrumb' ) )
attitude_breadcrumb();
?>
<h3 class="page-title"><?php echo attitude_header_title(); ?></h3><!-- .page-title -->
</div>
</div>
While the page titles are displayed with:
<header class="entry-header">
<h2 class="entry-title">
<?php the_title(); ?>
</h2><!-- .entry-title -->
</header>
I’ve tried just pasting that in its place but 1. The title-wrap only goes across the top of the page content and not across the top of the sidebar, and 2. It doesn’t display the page title!
How can I fix this?