xmlrpc_pingback_error()
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.
Returns
IXR_Error.
Usage
xmlrpc_pingback_error( $ixr_error );
- $ixr_error(IXR_Error) (required)
- .
Changelog
| Since 3.5.1 | Introduced. |
xmlrpc_pingback_error() xmlrpc pingback error code WP 6.9.1
function xmlrpc_pingback_error( $ixr_error ) {
if ( 48 === $ixr_error->code ) {
return $ixr_error;
}
return new IXR_Error( 0, '' );
}