Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

theemwiz
4,641 PointsWhat I am doing incorrect in this code challenge?
Task is to "Create an empty function named my_plugin_styles and then use the information in the comment to enque the admin stylesheet. "
<?php
// Handle: my_plugin_css // Plugin folder: my-plugin // CSS file: my-plugin.css
function my_plugin_styles() {
wp_enqueue_style ( 'my_plugin_css' , plugin_url('my-plugin/my-plugin.css') );
};
?>
2 Answers

Jason Anders
Treehouse Moderator 145,623 PointsHey Nishant.
You've pretty much have it right, but there is one typo. The function you need after the hook inside of my_plugin_styles
needs to be plugins_url
with an 's'.
<?php
// Handle: my_plugin_css
// Plugin folder: my-plugin
// CSS file: my-plugin.css
function my_plugin_styles() {
wp_enqueue_style ( 'my_plugin_css' , plugins_url('my-plugin/my-plugin.css') );
};
?>
Keep Coding! :)

theemwiz
4,641 PointsThanks for your help Jason.