Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="primary" class="content-area">
  4. <main id="main" class="site-main" role="main">
  5.  
  6. <?php
  7. if (have_posts()) : while (have_posts()) : the_post();
  8.  
  9. $custom_arr = array(1,2,3,4);
  10. if (in_array(get_the_ID(), $custom_arr)) {
  11. get_template_part( 'parts/loop', 'single-custom' );
  12. }
  13. else {
  14. get_template_part( 'parts/loop', 'single' );
  15. }
  16.  
  17. endwhile; else :
  18.  
  19. get_template_part( 'parts/content', 'missing' );
  20.  
  21. endif;
  22. ?>
  23. </main><!-- #main -->
  24. </div><!-- #primary -->
  25.  
  26. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement