Vimeo video play button color function

I did a couple of things to fix this issue… I added a function that adds a class to my Vimeo iFrame: https://wp-time.com/add-custom-class-to-wordpress-iframe-video/ function video_class($html) { if (preg_match(‘/(vimeo.com)/’, $html)) { return str_replace(‘<iframe’, ‘<iframe class=”video”‘, $html); } else { return $html; } } add_filter(’embed_oembed_html’, ‘video_class’, 99, 4); I implemented some JS to change the properties of … Read more

Video Player for Free WordPress Site [closed]

For the most popular video services, you can just paste the link on a line by itself in the post editor: https://en.support.wordpress.com/videos/ For mp4 files hosted offsite on unsupported sites, you can try to use a service like this (http://embed.ly/) but I don’t think it will work well. More likely, you’ll have to sign up … Read more

Displaying cf post formats with oembed

<?php if (strstr($audio, ‘<iframe’)) { echo $audio; } else { echo wp_oembed_get( get_post_meta($post->ID, ‘_format_audio_embed’, true) ); } ?> Of course, this would require that you get the custom field with the audio embed code or url into $audio 🙂 Edit – try: <?php $audio = get_post_meta($post->ID, ‘_format_audio_embed’, true); if (strstr($audio, ‘<iframe’)) { echo $audio; } … Read more

Video slideshow

Just got this working adding a text metabox for the youtube id. Then added this lines before the link in the slider just below the opening tag: <?php if ( get_post_meta( get_the_id(), ‘video’, true) != ” ) { $video= get_post_meta( get_the_id(), ‘video’, true); ?> Here goes the embed code but we replace with <?php echo … Read more

avi mp4 flv video player [closed]

You will need to increase your media upload limits in your php.ini file or ask your host to increase them. You can also increase the limits via your functions file or .htaccess file. Installing a video plugin won’t increase the limits. You can also use the native video player already included in WordPress without the … Read more