当前位置: 首页>>代码示例>>PHP>>正文


PHP SucomUtil::get_mt_media_url方法代码示例

本文整理汇总了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
 }
开发者ID:SurniaUlula,项目名称:wpsso-schema-json-ld,代码行数:35,代码来源:schema.php


注:本文中的SucomUtil::get_mt_media_url方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。