Guest User

Untitled

a guest
Apr 25th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. if ( isset( $_POST['slide_duration'] ) && is_numeric( $_POST['slide_duration'] ) && $_POST['slide_duration'] >= 1 ) {
  2. $slide_duration = intval($_POST['slide_duration']);
  3. update_post_meta( $post_id, 'slide_duration', $slide_duration );
  4. }
  5. else {
  6. delete_post_meta( $post_id, 'slide_duration' );
  7. }
  8.  
  9. if ( isset( $_POST['background-video'] ) ) {
  10. update_post_meta( $post_id, 'slide_duration', $video_meta['length'] );
  11. }
  12.  
  13. <?php
  14. $slide_duration = isset( $theme_stored_meta['slide_duration'] ) ? intval($theme_stored_meta['slide_duration'][0]) : '';
  15. ?>
  16. <input type="number" name="slide_duration" value="<?=$slide_duration?>" min="1" step="1" style="width: 70px;" /> <?=__('seconds', 'theme')?>
Add Comment
Please, Sign In to add comment