Skip to content

Instantly share code, notes, and snippets.

@davidcroda
Created February 27, 2014 15:51
Show Gist options
  • Save davidcroda/9252762 to your computer and use it in GitHub Desktop.
Save davidcroda/9252762 to your computer and use it in GitHub Desktop.
<?php
function test($id) {
$this->autoRender = false;
App::import('Lib','WordpressFacade');
$wordpressFacade = new WordpressFacade();
$account = $this->WordpressConnection->read(null, $id);
$account = $account['WordpressConnection'];
$wordpressFacade->setCredentials($account['url'],$account['wp_username'],$account['password']);
$posts = $wordpressFacade->getCommentsGroupedByPost();
debug($posts);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment