xmlrpc_pingback_error( IXR_Error $ixr_error )

Default filter attached to xmlrpc_pingback_error.


Description

Returns a generic pingback error code unless the error code is 48, which reports that the pingback is already registered.


Parameters

$ixr_error

(IXR_Error) (Required)


Return

(IXR_Error)


Source

File: wp-includes/comment.php

function xmlrpc_pingback_error( $ixr_error ) {
	if ( $ixr_error->code === 48 )
		return $ixr_error;
	return new IXR_Error( 0, '' );
}

Changelog

Changelog
Version Description
WP-3.5.1 Introduced.