Advertisement
Guest User

my_save_vid_pix_data()

a guest
Jul 1st, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2. add_action( 'init', 'my_save_vid_pix_data' );
  3. function my_save_vid_pix_data() {
  4.     // ... other code here remain intact ...
  5.  
  6.     // Sorted post/attachment IDs.
  7.     $vid_pix_sorted = [];
  8.  
  9.     foreach ( $atts as $vP => $arr ) {
  10.         $vid_pix_sorted[] = $vP;
  11.     }
  12.  
  13.     // Saves the sorted post IDs, in the exact order they were sorted on the
  14.     // front-end.
  15.     update_post_meta( $post_id, '_vid_pix_sorted', $vid_pix_sorted );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement