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 trial

WordPress How to Build a WordPress Plugin Connecting WordPress Plugins with 3rd Party APIs Parsing JSON Code Challenge: Part 2

Christopher Hamb
Christopher Hamb
1,484 Points

Getting stuck on Challenge task 1 of 1 for Stage 3 of How to build Wordpress Plugins

My code is attached and I keep getting bummer errors. What am I doing wrong?

Thanks

plugin.php
<?php

/*
  {
    "name": "Username",
    "profile_name": "profile_username",
    "profile_url": "http://myapi.net/profile_username"
    "courses": [
      { "name": "WordPress Plugin Development" },
      { "name": "WordPress Theme Development" },
      { "name": "Introduction to PHP" }
    ]
  }
*/

?>

<ul>
  <?php for( $i = 0; $i < count($my_plugin_profile->courses); $i++ ): ?>

  <li><?php echo $my_plugin_profile -> {'courses'} -> {'name'}[$i] ; ?></li>

  <?php endfor; ?>
</ul>
Tim Holley
Tim Holley
8,464 Points

I haven't done this course myself yet, but just lending an eye...should there be a comma at the end of "profile_url"? and in your for statement, should it be a : or ;?