Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJokūbas Maknavičius
7,419 Pointswhat i doing bad
https://teamtreehouse.com/library/adding-css-to-a-plugin-settings-page-2
<?php
// Handle: my_plugin_css
// Plugin folder: my-plugin
// CSS file: my-plugin.css
function my_plugin_styles() {
wp-enqueue-style( 'my_plugin_styles', plugins_url('my-plugin/my-plugin.css') );
}
add_action('admin_head', 'my_plugin_styles');
?>
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! Mostly you've just gotten underscores confused with hyphens But also the first argument should be my_plugin_css
. Take a look:
wp_enqueue_style( 'my_plugin_css', plugins_url('my-plugin/my-plugin.css') ); /* you have written wp-enqueue-style */
Hope this helps!
Jokūbas Maknavičius
7,419 PointsJokūbas Maknavičius
7,419 PointsThanks