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

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 ): null|false

Lists categories.


Description

Top ↑

See also


Top ↑

Parameters

$optionall int Optional

Default: 1

$all string Optional

Default: 'All'

$sort_column string Optional

Default: 'ID'

$sort_order string Optional

Default: 'asc'

$file string Optional

Default: ''

$list bool Optional

Default: true

$optiondates int Required
$optioncount int Required
$hide_empty int Optional

Default: 1

$use_desc_for_title int Optional

Default: 1

$children bool Optional

Default: false

$child_of int Required
$categories int Required
$recurse int Required
$feed string Optional

Default: ''

$feed_image string Optional

Default: ''

$exclude string Optional

Default: ''

$hierarchical bool Optional

Default: false


Top ↑

Return

null|false


Top ↑

Source

File: wp-includes/deprecated.php. View all references

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);
}


Top ↑

Changelog

Changelog
Version Description
2.1.0 Use wp_list_categories()
0.71 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.