wpseek.com
A WordPress-centric search engine for devs and theme authors
get_category_parents › WordPress Function
Since1.2.0
Deprecatedn/a
› get_category_parents ( $category_id, $link = false, $separator = '/', $nicename = false, $deprecated = array() )
Parameters: (5) |
|
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Retrieves category parents with separator.
Related Functions: get_category_by_path, get_category_children, get_categories, get_category_link, get_category
Source
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 );
}