Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. add_filter( 'xmlrpc_methods', 'remove_xmlrpc_methods');
  2. function remove_xmlrpc_methods( $methods ) {
  3. unset( $methods['system.multicall'] );
  4. unset( $methods['system.listMethods'] );
  5. unset( $methods['system.getCapabilities'] );
  6. return $methods;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement