wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_category_parents › WordPress Function

Da1.2.0
Deprecaton/a
get_category_parents ( $category_id, $link = false, $separator = '/', $nicename = false, $deprecated = array() )
Parametri: (5)
  • (int) $category_id Category ID.
    Richiesto:
  • (bool) $link Optional. Whether to format with link. Default false.
    Richiesto: No
    Default: false
  • (string) $separator Optional. How to separate categories. Default '/'.
    Richiesto: No
    Default: '/'
  • (bool) $nicename Optional. Whether to use nice name for display. Default false.
    Richiesto: No
    Default: false
  • (array) $deprecated Not used.
    Richiesto: No
    Default: array()
Ritorna:
  • (string|WP_Error) A list of category parents on success, WP_Error on failure.
Definito a:
Codex:
ChangeLog:
  • 4.8.0

Retrieves category parents with separator.



Sorgenti

function get_category_parents( $category_id, $link = false, $separator = '/', $nicename = false, $deprecated = array() ) {

	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, '4.8.0' );
	}

	$format = $nicename ? 'slug' : 'name';

	$args = array(
		'separator' => $separator,
		'link'      => $link,
		'format'    => $format,
	);

	return get_term_parents_list( $category_id, 'category', $args );
}