DMC Media

Create media players with optional download link by category or singly.

Author:Larry Wakeman (profile at wordpress.org)
WordPress version required:
WordPress version tested:5.3.3
Plugin version:3.2
Added to WordPress repository:01-10-2015
Last updated:18-11-2019
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://larrywakeman.com/download/dmc-media/
Total downloads:1 181
plugin download
Click to start download

Create media players with optional download link by category or singly.

I am a member and webmaster for a Barbershop Chorus and we rely heavily on learning
tracks to learn and review songs. On the website, I created four pages, Bari, Bass, Lead, and Tenor
and with one shortcode, display all the learning tracks for that part. It also works with mp4 videos.

Features include:
* Upgrade Safe customization

Customization

This plugin is built almost completely with PHP Objects. All of the obhects except dmcmedia.php can be inherited for customiztion.
There are some rules for this:

  • The customized object must be in the custom directory.
  • The filename must be _custom.php, i.e. gd_admin_custom.php
  • The class must be named _custom and inherit , i.e class gd_core_custom inherits gd_core {.
  • It should include a constructor that calls the parent constructor:
    function __construct() {
    parent::__construct();
    }