404 CSS file in 3.6.7
-
Thanks for this plugin.
Just a heads up in version 3.6.7 the following code was added to load a CSS file (dist/plugins.css) on the plugins.php admin page.
code-snippets/php/class-admin.php#80public function enqueue_admin_assets( ?string $hook_name ) {
if ( 'plugins.php' === $hook_name ) {
wp_enqueue_style(
'code-snippets-plugins-css',
plugins_url( 'dist/plugins.css', PLUGIN_FILE ),
[],
PLUGIN_VERSION
);
}
}However the dist/plugins.css stylesheet file does not exist in the plugin’s files.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘404 CSS file in 3.6.7’ is closed to new replies.