Skip to content

Instantly share code, notes, and snippets.

@ofstudio
Last active August 29, 2015 14:14
Show Gist options
  • Save ofstudio/d66b6c77a7508cef2804 to your computer and use it in GitHub Desktop.
Save ofstudio/d66b6c77a7508cef2804 to your computer and use it in GitHub Desktop.
Ghost browse posts by tag snippet
var api = require('ghost/core/server/api');
api.posts.browse({
context: {
internal: true
},
tag: 'music'
}).then(function (responce){
console.log(responce);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment