Import iTunes JSON into WordPress

I am working on a little project that parses the JSON feeds of iTunes and imports the categories into WordPress. Here’s the relevant snippet.

I am using wp_remote_get here, a much simpler alternative to using CURL or file_get_content() of PHP. WordPress has built-in functions for inserting categories - wp_insert_category and wp_create_category - but they aren’t working in 3.5.1 and hence had to use wp_insert_term.


  $url = "http://itunes.apple.com/WebObjects/MZStoreServices.woa/ws/genres?id=20";

  $data = wp_remote_retrieve_body (wp_remote_get($url));
  $json = json_decode($data, true);

  foreach ($json['26']['subgenres'] as $item) {
        $id = wp_insert_term ( $item['name'],
                'category', array (
                'slug' => $item['url'],
                'description' => $item['id']));

        if ( isset ($item['subgenres']) ) {
                foreach ($item['subgenres'] as $sub) {
                    wp_insert_term ( $sub['name'], 'category',
                        array ('slug' => $sub['url'],
                               'description' => $sub['id'],
                               'parent' => $id["term_id"]
                               )
                     );
                }
        }

}

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻