Wordpress: Not able to retrieve css for new plugin in admin mode
- by Steven
I'm creating a new plugin which will have it's own css file. The css file resides in the root folder of the plugin.
In the plugin section of the admin interface, I have added a few text fields fields. But the CSS is not applied.
I'm adding the CSS file using this code:
// Register styling
add_action('admin_init', 'event_styles');
function…