W3cubDocs

/WordPress

list_cats( int $optionall = 1, string $all = 'All', string $sort_column = 'ID', string $sort_order = 'asc', string $file = '', bool $list = true, int $optiondates, int $optioncount, int $hide_empty = 1, int $use_desc_for_title = 1, bool $children = false, int $child_of, int $categories, int $recurse, string $feed = '', string $feed_image = '', string $exclude = '', bool $hierarchical = false )

This function has been deprecated. Use wp_list_categories() instead.

Lists categories.

Description

See also

Parameters

$optionall

(int) (Optional)

Default value: 1

$all

(string) (Optional)

Default value: 'All'

$sort_column

(string) (Optional)

Default value: 'ID'

$sort_order

(string) (Optional)

Default value: 'asc'

$file

(string) (Optional)

Default value: ''

$list

(bool) (Optional)

Default value: true

$optiondates

(int) (Required)

$optioncount

(int) (Required)

$hide_empty

(int) (Optional)

Default value: 1

$use_desc_for_title

(int) (Optional)

Default value: 1

$children

(bool) (Optional)

Default value: false

$child_of

(int) (Required)

$categories

(int) (Required)

$recurse

(int) (Required)

$feed

(string) (Optional)

Default value: ''

$feed_image

(string) (Optional)

Default value: ''

$exclude

(string) (Optional)

Default value: ''

$hierarchical

(bool) (Optional)

Default value: false

Return

(null|false)

Source

File: wp-includes/deprecated.php

function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0,
				$optioncount = 0, $hide_empty = 1, $use_desc_for_title = 1, $children=false, $child_of=0, $categories=0,
				$recurse=0, $feed = '', $feed_image = '', $exclude = '', $hierarchical=false) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'wp_list_categories()' );

	$query = compact('optionall', 'all', 'sort_column', 'sort_order', 'file', 'list', 'optiondates', 'optioncount', 'hide_empty', 'use_desc_for_title', 'children',
		'child_of', 'categories', 'recurse', 'feed', 'feed_image', 'exclude', 'hierarchical');
	return wp_list_cats($query);
}

Changelog

Version Description
2.1.0 Use wp_list_categories()
0.71 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/list_cats