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;
?>


