I am loading Journal.php via the template function with the following code
PHP Code:
<?php
/*
Template Name: Journal
*/
?>
<?php // get all options:
include (TEMPLATEPATH . '/functions/bfa_get_options.php');
get_header(); ?>
<?php // Displayed on MULTI post pages if activated at Theme Options -> Next/Previous Navigation:
bfa_next_previous_page_links('Top'); // To edit the output, see functions/bfa_next_previous_links.php ?>
<?php
//detect a set series of posts per page
$ppp = get_option('posts_per_page');
// initial page fourteen posts
if (!is_paged()) {
$posts = get_posts('numberposts=1&cat=-23&order=DESC&orderby=date');
// second page with offset
} elseif($paged == 2) {
$posts = get_posts('offset=5');
// all alternative pages with settings from backend
} else {
$offset = $ppp*($paged-2)+5;
$posts = get_posts('offset='.$offset);
}
if($posts) :
foreach ($posts as $post) :
setup_postdata($post);
next_post_link();
?>
<div>
<font size="4.2pt"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"> <?php the_title(); ?></a></font> <font size="0.2pt" text-align="right"><?php the_date(); ?> <?php the_time(); ?>- <?php the_author(); ?></font></p>
<?php the_content(); ?>
</div>
<?php endforeach;
endif ?></td>
<?php // Displayed on MULTI post pages if activated at Theme Options -> Next/Previous Navigation:
bfa_next_previous_page_links('Bottom'); // To edit the output, see functions/bfa_next_previous_links.php ?>
<?php // Load Comments template (on single post pages, and "Page" pages, if set on options page)
bfa_get_comments(); // To edit the output, see functions/bfa_post_parts.php ?>
<?php get_footer(); ?>