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 trialtheemwiz
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,860 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.