B-Interactive / cloudflare-stream-wordpress

A fork of the official Cloudflare Stream plugin for WordPress.
GNU General Public License v2.0
16 stars 3 forks source link

Admin CSS enqueued in wrong class. #17

Closed B-Interactive closed 2 years ago

B-Interactive commented 2 years ago

I misused /src/init.php for enqueing scripts/styles not related to blocks, specifically styles for use in the admin area. I've now moved the section in question to the /src/inc/class-cloudflare-stream-settings.php file with commit 8014c0c3ca8a43ea703fa79a41d9d4689b29153d.

/src/init.php is used exclusively for blocks, which isn't obvious from the filename. In my prior plugin projects, the comparable file would be used for broader plugin initialisation, hence the mix-up.