Modifica plugin per thumbnail

ghera74

Nuovo Utente
24 Nov 2009
1
0
0
Ciao a tutti da un nuovo utente del Forum!

Nel mio video-blog flairvideo.net creato con Word Press, utilizzo un custom field per caricare il video, titolo "embed", e uno per il thumbnail, titolo "thumbnail".
Ho trovato un plugin che automatizza questo secondo passaggio per l'anteprima, si chiama "YouTubeThumb2CustomField".
Praticamente se trova un video youtube embed all'interno di un post, aggiunge un custom field con l'indirizzo del thumbnail.
Nel mio caso, però, non dovrebbe cercare il video nel corpo del post ma dovrebbe prenderlo dal c. field "embed".
Mi aiutereste a modificarlo?
Grazie mille dell'aiuto ;-)

<?php
/*
Plugin Name: YouTubeThumb2CustomField
Plugin URI: http://herrpfleger.de/wp-plugin
Description: Inserts URL to YouTube-thumbnail into Custom Field when you embed YouTube video into your post.
Author: Herr Pfleger
Version: 0.8
Author URI: http://herrpfleger.de
*/

add_action('save_post','find_ytid', 10, 2);

function find_ytid($postID, $post) {
if($parent_id = wp_is_post_revision($postID))
{
$postID = $parent_id;
}
$content = $_POST['content'];
if (preg_match('/http:\/\/www.youtube\.com\/v\/([a-zA-Z0-9\-\_]{11})/', $content, $yturl) !='') {
$ytid = substr($yturl[0], 25, 31);
$custom = 'http://img.youtube.com/vi/'.$ytid.'/hqdefault.jpg';
update_custom_meta($postID, $custom ,'ytthumb_url');
}
elseif (preg_match('/http(v|vh|vhd):\/\/([a-zA-Z0-9\-\_]+\.|)youtube\.com\/watch(\?v\=|\/v\/)([a-zA-Z0-9\-\_]{11})([^<\s]*)/', $content, $yturl) !='') {
$custom = 'http://img.youtube.com/vi/'.$yturl[4].'/hqdefault.jpg';
update_custom_meta($postID, $custom ,'ytthumb_url');
}
}

function update_custom_meta($postID, $newvalue, $field_name) {
// To create new meta
if(!get_post_meta($postID, $field_name)){
add_post_meta($postID, $field_name, $newvalue);
}else{
// or to update existing meta
update_post_meta($postID, $field_name, $newvalue);
}
}
?>
 

Discussioni simili