本文整理匯總了PHP中SucomUtil::get_mt_media_url方法的典型用法代碼示例。如果您正苦於以下問題:PHP SucomUtil::get_mt_media_url方法的具體用法?PHP SucomUtil::get_mt_media_url怎麽用?PHP SucomUtil::get_mt_media_url使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SucomUtil
的用法示例。
在下文中一共展示了SucomUtil::get_mt_media_url方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: add_single_video_data
public static function add_single_video_data(&$json_data, $opts, $prefix = 'og:video', $list_element = true)
{
$wpsso =& Wpsso::get_instance();
if (empty($opts) || !is_array($opts)) {
if ($wpsso->debug->enabled) {
$wpsso->debug->log('exiting early: options array is empty or not an array');
}
return 0;
// return count of videos added
}
$media_url = SucomUtil::get_mt_media_url($opts, $prefix);
if (empty($media_url)) {
if ($ngfb->debug->enabled) {
$ngfb->debug->log('exiting early: ' . $prefix . ' URL values are empty');
}
return 0;
// return count of videos added
}
$ret = array('@context' => 'https://schema.org', '@type' => 'VideoObject', 'url' => esc_url($media_url));
WpssoSchema::add_data_itemprop_from_assoc($ret, $opts, array('name' => $prefix . ':title', 'description' => $prefix . ':description', 'fileFormat' => $prefix . ':type', 'width' => $prefix . ':width', 'height' => $prefix . ':height', 'duration' => $prefix . ':duration', 'uploadDate' => $prefix . ':upload_date', 'thumbnailUrl' => $prefix . ':thumbnail_url', 'embedUrl' => $prefix . ':embed_url'));
if (!empty($opts[$prefix . ':has_image'])) {
if (!WpssoSchema::add_single_image_data($ret['thumbnail'], $opts, 'og:image', false)) {
// list_element = false
unset($ret['thumbnail']);
}
}
if (empty($list_element)) {
$json_data = $ret;
} else {
$json_data[] = $ret;
}
// add an item to the list
return 1;
// return count of videos added
}