Этот плагин не тестировался с последними 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.

Скриншоты

Часто задаваемые вопросы

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' );

Отзывы

03.09.2016
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