Releases: awesomemotive/wp101plugin
Releases · awesomemotive/wp101plugin
Version 5.3.0
Version 5.1.0
- 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
- Ensure that legacy API keys are exchanged before making any other API requests (#45)
Version 5.0.0
- 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.