Advertisement
Guest User

Untitled

a guest
Aug 20th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <div id="sidebar">
  2.  
  3. <?php global $post;
  4.  
  5. if( is_home() ):
  6.  
  7. $tacs = "797,799";
  8.  
  9. else:
  10.  
  11. $tac_ids = get_post_meta( $post->ID, "tacticals", true );
  12.  
  13. $post_bup = $post;
  14.  
  15. $tacs = "";
  16. foreach( $tac_ids as $id => $on )
  17. $tacs .= $id.",";
  18. endif;
  19.  
  20. $tacticals = get_posts("post_type=tactical-panel&orderby=rand&numberposts=2&include=".$tacs);
  21.  
  22. foreach ( $tacticals as $post ):
  23. setup_postdata($post);
  24.  
  25. get_template_part( 'tactical', get_post_format() );
  26. endforeach;
  27.  
  28.  
  29. $post = $post_bup;
  30. ?>
  31.  
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement