Checks if a connector is registered.
Description
Do not use this method directly. Instead, use the wp_is_connector_registered() function.
See also
Parameters
$idstringrequired- The connector identifier.
Source
public function is_registered( string $id ): bool {
return isset( $this->registered_connectors[ $id ] );
}
Changelog
| Version | Description |
|---|---|
| 7.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.