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



get_all_category_ids › WordPress Function

Seit2.0.0
Veraltet4.0.0
get_all_category_ids ( Keine Parameter )
Links:
Siehe:
Gibt zurück:
  • (int[]) List of all of the category IDs.
Definiert in:
Codex:

Retrieves all category IDs.



Quellcode

function get_all_category_ids() {
	_deprecated_function( __FUNCTION__, '4.0.0', 'get_terms()' );

	$cat_ids = get_terms(
		array(
			'taxonomy' => 'category',
			'fields'   => 'ids',
			'get'      => 'all',
		)
	);

	return $cat_ids;
}