Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Danielnn

    (@danielnn)

    // Add actions to save video thumbnails when saving Draft
    add_action(‘save_post’, ‘save_draft_video_thumbnail’, 100, 1);

    function save_draft_video_thumbnail($post_id) {
    $postdata = get_postdata($post_id);
    if ($postdata[‘post_status’] == ‘draft’) {
    get_video_thumbnail( $post_id );
    }
    }

    F3rn4nd0s4nt0s

    (@f3rn4nd0s4nt0s)

    Not work in wordpress 3.8.1…

    it works in WordPress 3.6.1

    i’ve just added this code inside the plugin editor,
    before the line with

    // Class

    thanks a lot !

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Get thumbnail when saving draft’ is closed to new replies.