Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function custom_set_post_format_video( $post_id ) {
  2. if ( get_post_meta( $post_id, 'video', true ) ) {
  3. set_post_format( $post_id, 'video' );
  4. }
  5. }
  6. add_action( 'fes_submit_submission_form_bottom', 'custom_set_post_format_video' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement