這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

WP Dailymotion Video Fetcher

外掛說明

Add widget to display any dailymotion user videos. Just set Dailymotion’s username and choose the number of videos you’d like to display and set other layout options.

螢幕擷圖

  • Customizer view of the widget
  • How the widget displays with the theme TwentySixteen
  • How the widget displays with customization with the theme TwentySixteen
  • How the video popup show

常見問題集

Can it be customisable ?

Yes there are somes filters that can help you get the output that you want :

the wst_dailymotion_fields filter, that let you filter the video fields to get from dailymotion.
Possible fields can be found here : https://developer.dailymotion.com/documentation#video-fields

Example :

function wst_dailymotion_fields( $fields ){

    array_push($fields, 'duration_formatted');

    return $fields;
}
add_filter( 'wst_dailymotion_fields', 'wst_dailymotion_fields' );

使用者評論

2016 年 9 月 3 日
I've downloaded this plugin and use it with of wordpress 4.4, it's going well in my theme. good job wpdigger
2016 年 9 月 3 日
I appreciate this awesome plugin. Nice work wpdigger.
閱讀全部 3 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈WP Dailymotion Video Fetcher〉的開發相關工作。

參與者

將〈WP Dailymotion Video Fetcher〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1

  • First version of the plugin