Not sure where I copied the base code from (possibly juggledads custom template)
everything works fine but the page titles don't automatically show up, which is good in some cases but not in most.
What I want is for the typical Atahualpa functionality to exist, where the title displays by default unless the 'do not display' box is checked.
Here is the code I'm using for the template.
HTML Code:
<?php /* Template Name: 10 Miler */ ?> <?php list($bfa_ata, $cols, $left_col, $left_col2, $right_col, $right_col2, $bfa_ata['h_blogtitle'], $bfa_ata['h_posttitle']) = bfa_get_options(); get_header(); extract($bfa_ata); global $bfa_ata_postcount; ?> <?php /* If there are any posts: */ if (have_posts()) : $bfa_ata_postcount = 0; /* Postcount needed for option "XX first posts full posts, rest excerpts" */ ?> <?php // Deactivated since 3.6.5 # include 'bfa://content_above_loop'; // Uses the following static code instead: ?> <?php bfa_next_previous_page_links('Top'); // For MULTI post pages if activated at ATO -> Next/Previous Navigation: ?> <?php while (have_posts()) : the_post(); $bfa_ata_postcount++; ?> <?php // Deactivated since 3.6.5 #include 'bfa://content_inside_loop'; // Uses the following static code instead: ?> <?php bfa_next_previous_post_links('Top'); // For SINGLE post pages if activated at ATO -> Next/Previous Navigation ?> <?php /* Post Container starts here */ if ( function_exists('post_class') ) { ?> <div <?php if ( is_page() ) { post_class('post'); } else { post_class(); } ?> id="post-<?php the_ID(); ?>"> <?php } else { ?> <div class="<?php echo ( is_page() ? 'page ' : '' ) . 'post" id="post-'; the_ID(); ?>"> <?php } ?> <?php bfa_post_bodycopy('<div class="post-bodycopy clearfix"> <table align="right"> <tbody> <tr> <td> <div style="position: relative; z-index: 999;"> ...more below...