Advertisement
PhoTonFlinger

Untitled

Nov 12th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <?php get_header();?>
  2. <?php
  3. $options = arcane_get_theme_options();
  4. if(!isset($options['archive_template']))$options['archive_template'] = '';
  5. ?>
  6. <!-- Page content
  7. ================================================== -->
  8. <!-- Wrap the rest of the page in another container to center all the content. -->
  9. <div class=" blog">
  10. <div class="container">
  11. <div class="row">
  12.  
  13. <?php if($options['archive_template'] == 'full'){ ?>
  14.  
  15. <?php require_once(get_theme_file_path('blog-roll-full-tmp.php')); ?>
  16.  
  17. <?php }elseif($options['archive_template'] == 'left'){ ?>
  18.  
  19. <?php require_once(get_theme_file_path('blog-roll-left-tmp.php')); ?>
  20.  
  21. <?php }else{ ?>
  22.  
  23. <?php require_once(get_theme_file_path('blog-roll-right-tmp.php')); ?>
  24.  
  25. <?php } ?>
  26.  
  27. </div><!-- /.row -->
  28. </div><!-- /.container -->
  29. </div><!-- /.blog -->
  30. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement