このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの 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

FAQ

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
3件のレビューをすべて表示

貢献者と開発者

WP Dailymotion Video Fetcher はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“WP Dailymotion Video Fetcher” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

1

  • First version of the plugin