Skip to content

Releases: awesomemotive/wp101plugin

Version 5.3.0

09 Mar 17:26
Compare
Choose a tag to compare
  • Tested and verified for WordPress 5.7.
  • Updated name for better discoverability.
  • Updated screenshots and WP101® branding.

Version 5.1.0

05 Apr 18:57
Compare
Choose a tag to compare
  • Run migrations across a multisite network via a background task (#48).
  • Store public API keys based on the site URL, enabling better handling of domain changes (#52).
  • Add the wp101_excluded_topics filter (#53).
     /**
      * Exclude "some-video-slug" and "some-plugin.legacy_id" from appearing in
      * the WP101 video playlist.
      */
     add_filter( 'wp101_excluded_topics', function ( $topics ) {
       $topics[] = 'some-video-slug';
       $topics[] = 'some-plugin.legacy_id';
    
       return $topics;
     } );

Version 5.0.1

12 Mar 19:49
Compare
Choose a tag to compare
  • Ensure that legacy API keys are exchanged before making any other API requests (#45)

Version 5.0.0

11 Mar 19:57
ca0a496
Compare
Choose a tag to compare
  • Complete rewrite of the plugin and backing APIs to bring even more content to the WP101 plugin.
  • Custom videos, course visibility, and permissions are now controlled via the WP101 Plugin app.