Alguém pode dar um help, estou tentando pegar o json em uma url que eu criei usando o wordpress, segue o meu codigo do angularjs : controller.js
angular.module('starter')
.controller('MenuCtrl', function($http, $scope){
//alert('Hello');
$scope.categorias = [];
$http.get("http://localhost/udemywordpress/wordpress/api/get_category_index/").then(function(response){
$scope.categorias = response.data;
console.log(data);
}, function(err){
console.log(err);
})
})
.controller('PostCtrl', function(){
//alert('Hello');
})
segue uma imagem do meu json : http://imgur.com/a/AH6w0 ; nesse json esta mostrando que tem varias categorias , mas quando tento pegar as categorias usando o código a cima esta vindo o valor null.