xmlrpc_pingback_error()WP 3.5.1

Default filter attached to xmlrpc_pingback_error.

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

No Hooks.

Return

IXR_Error.

Usage

xmlrpc_pingback_error( $ixr_error );
$ixr_error(IXR_Error) (required)
-

Changelog

Since 3.5.1 Introduced.

xmlrpc_pingback_error() code WP 6.5.2

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