Advertisement
phpface

Untitled

Jul 30th, 2017
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. wp_insert_post( array(
  2.     'post_title'    =>  'My video title',
  3.     'post_content'  =>  'My video content',
  4.     'post_type'     =>  'video',
  5.     'post_status'   =>  'publish',
  6.     'meta_input'    =>  array(
  7.         'video_url' =>  'https://www.youtube.com/watch?v=rMGEMYaQiOg&t=210s',
  8.         'layout'    =>  'small'
  9.     )
  10. ) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement