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 trialKohane Kagami
12,390 PointsWhat's wrong with this codes?
<?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')); }
?>
<?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'));
}
?>
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey Kohane,
You're on the right track, but you aren't using the 'handle' the challenge is asking you to.
You are using my_plugin_styles
instead of my_plugin_css
in the function.
function my_plugin_styles() {
wp_enqueue_style('my_plugin_css', plugins_url('my-plugin/my-plugin.css') );
}
Kohane Kagami
12,390 PointsKohane Kagami
12,390 PointsThank you very much. I really appreciate it! :)