BTW, here is a code for importing AEBN XML tube feed for CyberSEO Suite users (assuming you are using
TubePress4 WP theme):
Custom Fields:
Code:
screen_url::screen_url
clip_url::clip_url
PHP Code <?php .. ?>:
Code:
$post ['custom_fields'] ['tp_affiliate'] = "http://www.aebn.com/index.cfm?refid=AEBN-NNNNNN&salesToolId=4";
// create an URL of thumb from it's path and file name
$post ['custom_fields'] ['tp_thumb'] = $post ['custom_fields'] ['screen_url'];
// since FLV videos have no unique GUID's let's use their URL's as post GUID's
$post ['guid'] = $post ['custom_fields'] ['clip_url'];
$post ['custom_fields'] ['tp_flv'] = $post ['guid'];
// check existence
cseo_must_be_binary ( $post ['custom_fields'] ['tp_thumb'] );
cseo_must_be_binary ( $post ['custom_fields'] ['tp_flv'] );
// store thumbnail locally
cseo_store_image ('tp_thumb', $post ['post_title'], 160, 120, 90);
// store original thumbnail url for hotlinking
$post ['custom_fields'] ['thumb'] = $post ['custom_fields'] ['tp_thumb'];
// now let's delete all useless custom fields
unset ( $post ['custom_fields'] ['screen_url'] );
unset ( $post ['custom_fields'] ['clip_url'] );
Simple replace
AEBN-NNNNNN in the code above with your actual AEBN id and return to your other projects while AEBN and CyberSEO Suite will be making money for you.