Practical Solutions to HTML5 Video on WordPress

In an old project, I ended up writing my own. And working with WordPress library to feed the players (audio and video), so there’s no foreign UI and a template builds the player with the proper attachment info. The audio player was implemented with JPlayer. The jQuery HTML5 Audio / Video Library jPlayer is the … Read more

what Format is really need for Video Players?

There is no one format that works on all browsers, for example, Firefox won’t play MP4 files due to FF not having the license to use the MP4 codec. You definitely need OGV and MP4 versions, the others will depend on other browsers and choice, it’s better to upload all versions to give you piece … Read more

Trying to turn all of my posts into a soundcloud playlist and can’t figure out where to start

I would use Custom Meta Post Boxes as seen in this tutorial: http://www.smashingmagazine.com/2011/10/create-custom-post-meta-boxes-wordpress/ You can add your own “Soundcloud ID” field which is entered in each post in a separate box. That will expose the needed data to your theme files in a much easier way. From here you can adjust your single post and … Read more

New theme HTML5 Support for Search in WordPress 4.4

You can add HTML5 support which will be very useful. I will consider that you won’t be testing your new wordpress theme on all the real devices due to which you should add HTML5 support in functions.php. You can frame the code as below: function customTheme_setup() { // HTML support add_theme_support( ‘html5’, array( ‘search-form’ ) … Read more