Further to my question.
The exact template is below.
I am not very familiar with PHP, but this templete does refer to the title. I’ve tried inserting the code to display the title in the loop-pwp.php file, but a paragraph <p> is inserted after the title separating it from the article, I suppose I could go deeper in the the functions but surely there should be an easier way.
Any help greatly apprectiated.
Steve
<?php
/**
* Template Name: Page with Posts (title)
*
* This is the template that displays all pages by default.
* Please note that this is the wordpress construct of pages
* and that other ‘pages’ on your wordpress site will use a
* different template.
*/
?>
<?php
global $wp_query;
global $weaver_loop;
get_header();
$paged = weaver_get_page();
if (weaver_is_checked_page_opt(‘ttw_hide_sidebars’)) echo(“<div id=\”container\” class=\”one-column page-with-posts page-with-posts-title\”>\n”);
else echo(“<div id=\”container\” class=\”page-with-posts page-with-posts-title\”>\n”);
weaver_put_wvr_widgetarea(‘sitewide-top-widget-area’,’ttw-site-top-widget’);
weaver_put_wvr_widgetarea(‘top-widget-area’,’ttw-top-widget’,’ttw_hide_widg_posts’);
weaver_put_perpage_widgetarea();
?>
<div id=”content”>
<?php
// First, put any content from the static page (code derived from page.php template)
if (have_posts()) {
the_post();
if ($paged == 1) { // only show on the first page
ob_start();
if ( is_front_page() ) {
weaver_put_page_title(‘h2’);
} else {
weaver_put_page_title(‘h1’);
}
weaver_page_content(); // get the page content, but don’t display
$page_content = ob_get_clean(); // get the output
// now, behave differently if empty.
if (strlen($page_content) > 0) {
?>
<div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<div class=”entry-content”>
<?php echo(“$page_content”); ?>
<div style=”clear:both;”></div>
</div><!– .entry-content –>
<?php edit_post_link( __( ‘Edit’, WEAVER_TRANS ), ‘<span class=”edit-link”>’, ‘</span>’ ); // put here… ?>
</div><!– #post-<?php the_ID(); ?> –>
<?php
}
}
$args = array(
‘orderby’ => ‘date’,
‘order’ => ‘DESC’,
‘paged’ => $paged
);
$args = weaver_setup_post_args($args); // setup custom fields for this page
$wp_query = new WP_Query();
query_posts($args);
$weaver_loop = ‘title’;
get_template_part(‘loop’,’pwp’);
}
?>
</div><!– #content –>
<?php weaver_put_wvr_widgetarea(‘bottom-widget-area’,’ttw-bot-widget’,’ttw_hide_widg_posts’); ?>
<?php weaver_put_wvr_widgetarea(‘sitewide-bottom-widget-area’,’ttw-site-bot-widget’); ?>
</div><!– #container –>
<?php
if (!weaver_is_checked_page_opt(‘ttw_hide_sidebars’)) get_sidebar();
get_footer();
?>