该插件尚未通过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.

屏幕截图

常见问题

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」是开源软件。 以下人员对此插件做出了贡献。

贡献者

更新日志

1

  • First version of the plugin