Retrieves all registered pattern categories.
Parameters
$outside_init_only
booloptional- Return only categories registered outside the
init
action.Default:
false
Source
public function get_all_registered( $outside_init_only = false ) {
return array_values(
$outside_init_only
? $this->registered_categories_outside_init
: $this->registered_categories
);
}
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.