I'm facing an issue with retrieving more than the default number of posts from a WordPress account. The default limit is set to 10, but I need at least 20 posts. Here's how I'm attempting to achieve it:
getBlogs: function($scope) {
$scope.postsURL = 'http://urbanetradio.com/wp-json/posts?filter[posts_per_page]=20&filter[order]=ASC_jsonp=JSON_CALLBACK';
$http.jsonp($scope.postsURL).success(function(data, status, headers, config) {
$scope.posts = data;
})
}
I'm utilizing this plugin
If you want to test it out, here's a Plunker link here is a Plunker just in case
When I try accessing the link using POSTMAN, I receive a STATUS 200 OK
response. However, within my app, I'm encountering errors.
Any insights on what might be causing this issue?