wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



xmlrpc_pingback_error › WordPress Function

Seit3.5.1
Veraltetn/v
xmlrpc_pingback_error ( $ixr_error )
Parameter:
  • (IXR_Error) $ixr_error
    Erforderlich: Ja
Links:
Gibt zurück:
  • (IXR_Error)
Definiert in:
Codex:

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.


Quellcode

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