Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 21st, 2012  |  syntax: PHP  |  size: 0.98 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.  
  3. /*
  4.    WARNING! DO NOT EDIT THIS FILE!
  5.  
  6.    BizzThemes framewrok is built with hooks, which are all located in
  7.    library/hooks template directory. Please edit those files to
  8.    customize your design/look, combined with Theme Option Panel
  9.    in Wordpress backed.
  10.  
  11. */
  12.  
  13.     get_header();
  14.  
  15.     /*
  16.             This is SINGLE POST template displayed according to your settings in
  17.             theme options panel. You have option to show checked function
  18.         block sections in order you like of course - now GO TO
  19.                 THEME OPTIONS PANEL TO SET IT UP.
  20.         */
  21.  
  22.        
  23.         foreach ($GLOBALS['opt']['bizzthemes_post_s'] as $key => $value) {
  24.                                        
  25.                 if ( $GLOBALS['opt']['bizzthemes_post_s_'.$key.''] == 'true' ) {
  26.                                                
  27.                         eval('bizz_'.$key.'(); ');
  28.                                                        
  29.                 }
  30.                                                
  31.         }
  32. <div class="pagenavi">
  33. <?php if( function_exists( 'wp_pagenavi ' ) ) {
  34.      wp_pagenavi();
  35. } else {
  36.      next_posts_link('Older Posts');
  37.      previous_posts_link('Newer Posts');
  38. } ?>
  39. </div>
  40.     get_footer();
  41.  
  42. ?>