walk_category_tree

Definition:
function walk_category_tree() {}

Retrieve HTML list content for category list.

Source code

function walk_category_tree() {

	$args = func_get_args();

	// the user's options are the third parameter

	if ( empty($args[2]['walker']) || !is_a($args[2]['walker'], 'Walker') )

		$walker = new Walker_Category;

	else

		$walker = $args[2]['walker'];



	return call_user_func_array(array( &$walker, 'walk' ), $args );

}

3339

walk_category_dropdown_tree

Definition:
function walk_category_dropdown_tree() {}

Retrieve HTML dropdown (select) content for category list.

Source code

function walk_category_dropdown_tree() {

	$args = func_get_args();

	// the user's options are the third parameter

	if ( empty($args[2]['walker']) || !is_a($args[2]['walker'], 'Walker') )

		$walker = new Walker_CategoryDropdown;

	else

		$walker = $args[2]['walker'];



	return call_user_func_array(array( &$walker, 'walk' ), $args );

}

3337

valid_unicode

Definition:
function valid_unicode($i) {}

Helper function to determine if a Unicode value is valid.

Parameters

  • int $i: Unicode value

Return values

returns:True if the value was a valid Unicode number

Source code

function valid_unicode($i) {

	return ( $i == 0x9 || $i == 0xa || $i == 0xd ||

			($i >= 0x20 && $i <= 0xd7ff) ||

			($i >= 0xe000 && $i <= 0xfffd) ||

			($i >= 0x10000 && $i <= 0x10ffff) );

}

3335