See the Snippets! You can get productive in minutes or waste days and debug huge amounts of free and crappy code to get to 5% of elWpAPI's functionality.

WordPress Remote Control

WordPress XMLRPC Remote Publishing API (and beyond) by Easy-to-use PHP Objects

••• Hey there! Click here to buy, download or update the WpAPI library ONLY after you read the #3 Testimonials •••

Extending WPAPI

I will not support modified version of WPAPI. Your core WPAPI files must be left untouched and any fix in the codebase must go through me. You tell me about the bug or functionality improvement by EMail, I fix/update the code and you get a new copy. That's it!

But you can extend WPAPI easily. Simply extend the class. Add or overwrite methods and get your pimped version up and running.

<?php
// extending elWpAPI
if(!class_exists('myWpAPI', false)):
class myWpAPI extends elWpAPI{
// Do what you wish here...
};
endif;
// extending elWpAPIpro
if(!class_exists('myWpAPIpro', false)):
class myWpAPIpro extends elWpAPIpro{
// Do what you wish here...
};
endif;
// extending elWpAPIpro
if(!class_exists('myWpAPIwrap', false)):
class myWpAPIwrap extends elWpAPIwrap{
// Do what you wish here...
};
endif;
?>