Plugin Author
Ulrich
(@grapplerulrich)
Currently it is not possible. I am looking into how it would be possible to extend it. Will let you know once I have a working solution.
Plugin Author
Ulrich
(@grapplerulrich)
I have some code for you that you can use with version 1.13.0
/*
* Add playlist links
*/
function malexander07_fp5_below_playlist( $playlist_id, $atts ) {
$video_number = -1;
foreach ( $atts as $video_id => $video ) {
$sources = array();
$video_number++;
echo '<a href="#" onclick="fpPlaylist' . $playlist_id . '.play(' . $video_number . ');return false;">' . $video['content'] . '</a>';
}
}
add_action( 'fp5_below_playlist', 'malexander07_fp5_below_playlist', 10, 2 );
/*
* Add editor to videos to add custom content for playlists
*/
function malexander07_fp5_post_type_supports( $supports ) {
$supports[] = 'editor';
return $supports;
}
add_filter('fp5_post_type_supports','malexander07_fp5_post_type_supports');