Retrieves an array containing the properties of a registered icon collection.
Parameters
$collection_slugstringrequired- Icon collection slug.
Source
public function get_registered( $collection_slug ) {
if ( ! $this->is_registered( $collection_slug ) ) {
return null;
}
return $this->registered_collections[ $collection_slug ];
}
Changelog
| Version | Description |
|---|---|
| 7.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.