Advertisement
Guest User

Untitled

a guest
Aug 20th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. $argsgaleria = array('orderby' => 'title',
  2. 'order' => 'ASC',
  3. 'posts_per_page'=>-1,
  4. 'post_type' => 'galeria'
  5. );
  6. $myposts2 = get_posts( $argsgaleria );
  7.  
  8. foreach ( $myposts2 as $post ) : setup_postdata( $post );
  9. $gal_id = $post->ID;
  10.  
  11. $checked2 = is_array($gals) && isset($gals[$gal_id]) && in_array(get_the_ID(), $gals[$gal_id]) ? 'checked="checked"' : '';
  12.  
  13. ?>
  14. <p><label>
  15. <input <?php echo $checked2; ?> type="checkbox" name="myposts_gal[<?php echo $gal_id;?>][<?php echo $id_pro;?>]" value="<?php the_ID(); ?>" id="myposts_gal[]" /><?php the_title(); ?>
  16. </label></p>
  17. <?php
  18.  
  19.  
  20. endforeach;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement