Overwrite default XMLRPC function from plugin
Actually, that hook just lets you tie in to the beginning of executing that function, it doesn’t let you override anything. If you want to replace this function entirely, I recommend two different options: 1. Don’t use it Just define your own XMLRPC method (myNamespace.newMediaObject) and call that instead. 2. Replace it You can tie … Read more