
Untitled
By: a guest on
May 21st, 2012 | syntax:
PHP | size: 0.98 KB | hits: 20 | expires: Never
<?php
/*
WARNING! DO NOT EDIT THIS FILE!
BizzThemes framewrok is built with hooks, which are all located in
library/hooks template directory. Please edit those files to
customize your design/look, combined with Theme Option Panel
in Wordpress backed.
*/
get_header();
/*
This is SINGLE POST template displayed according to your settings in
theme options panel. You have option to show checked function
block sections in order you like of course - now GO TO
THEME OPTIONS PANEL TO SET IT UP.
*/
foreach ($GLOBALS['opt']['bizzthemes_post_s'] as $key => $value) {
if ( $GLOBALS['opt']['bizzthemes_post_s_'.$key.''] == 'true' ) {
eval('bizz_'.$key.'(); ');
}
}
<div class="pagenavi">
<?php if( function_exists( 'wp_pagenavi ' ) ) {
wp_pagenavi();
} else {
next_posts_link('Older Posts');
previous_posts_link('Newer Posts');
} ?>
</div>
get_footer();
?>