Why is $wp_xmlrpc_server->minimum_args protected? It seems like as much of a utility method as $wp_xmlrpc_server->login. Is there some other way to sanitize the inputs for length or do I have to write my own method?
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
|
||||
|
|
|
You can totally swap out the class that runs the xmlrpc server. So create a subclass of Example (not tested, use with caution):
To answer your question, it's protected because it's meant to be an internal method. There would be no reason for someone outside the |
|||||
|