xmlrpc_call, wp.editPage, $args, $this

xmlrpc_call, wp.editPage, $args, $this

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: 7.0.3

do_action('xmlrpc_call, wp.editPage, $args, $this') is found 1 times:

  • /wp-includes/class-wp-xmlrpc-server.php line 3210
    			return $this->error;
    		}
    
    		/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
    		do_action( 'xmlrpc_call', 'wp.editPage', $args, $this );
    
    		// Get the page data and make sure it is a page.
    		$actual_page = get_post( $page_id, ARRAY_A );
    		if ( ! $actual_page || ( 'page' !== $actual_page['post_type'] ) ) {
    			return new IXR_Error( 404, __( 'Sorry, no such page.' ) );
    		}