This code snippet is an example of how you can add your own custom videos to the videos page via a plugin or functions.php: 'My Category', 'list' => array( 'myvid' ) ); return $video_cats; }); add_filter('wpmudev_vids_embed_html', function( $video_html, $slug ) { if ( 'myvid' == $slug ) { $video_html = ''; } return $video_html; }, 10, 2); ?> This code snippet is an example of how you can add another video host support for custom videos. Note: Your host should support oembed in order to work. If your host doesn' support oembed, use above method. __( 'Dailymotion', 'my-plugin' ), 'format' => 'http://www.dailymotion.com/video/*', 'provider' => 'http://www.dailymotion.com/services/oembed', 'regex' => false, ]; return $hosts; } ); 63892-1724886102-au