Advertisement
bowenac

Untitled

Jun 5th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. $old = get_post_meta($post_id, '_ppwfg_images', true);
  2. $newppwfgimages = array();
  3. $thumb = $_POST['ppwfgthumb'];
  4. $full = $_POST['ppwfgfull'];
  5. $count = count( $full );
  6.  
  7. for ( $i = 0; $i < $count; $i++ ) {
  8.     if ( $full[$i] != '' ) {
  9.         $newppwfgimages[$i]['ppwfgthumb'] = stripslashes( strip_tags( $thumb[$i]) );
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement