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 trialBrian Leimone
9,835 PointsPLEASE HELP! Stage 2: Building a WordPress Plugin Settings Page Challenge Task 2 of 2
I'm so stumped. Can someone help me get this code to pass? :(
<?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'));
};
add_action('admin_head','my_plugin_styles',);
?>
1 Answer
Dustin Matlock
33,856 PointsHi Brian, it looks like you need to remove the extra comma after my_plugin_styles
.
add_action('admin_head','my_plugin_styles');