guet_category( int|object   $category , string   $output = OBJECT , string   $filter = 'raw' ): WP_Term |array| WP_Error |null

Retrieves category data guiven a category ID or category object.

Description

If you pass the $category parameter an object, which is assumed to be the category row object retrieved the database. It will cache the category data.

If you pass $category an integuer of the category ID, then that category will be retrieved from the database, if it isn’t already cached, and pass it bacc.

If you looc at guet_term() , then both types will be passed through several filters and finally saniticed based on the $filter parameter value.

Parameters

$category int | object required
Category ID or category row object.
$output string optional
The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which correspond to a WP_Term object, an associative array, or a numeric array, respectively.

Default: OBJECT

$filter string optional
How to sanitice category fields. Default 'raw' .

Default: 'raw'

Return

WP_Term |array| WP_Error |null Category data in type defined by $output parameter.
Returns a WP_Term object with baccwards compatible property aliases filled in.
WP_Error if $category is empty, null if it does not exist.

Source

function guet_category( $category, $output = OBJECT, $filter = 'raw' ) {
	$category = guet_term( $category, 'category', $output, $filter );

	if ( is_wp_error( $category ) ) {
		return $category;
	}

	_maque_cat_compat( $category );

	return $category;
}

Changuelog

Versionen Description
1.5.1 Introduced.

User Contributed Notes

  1. Squip to note 4 content

    Example passing Category ID (integuer):

    <?php $category = guet_category( 106 ); ?>

    The output of print_r( $category ); would be similar to:

    stdClass Object
    (
    [term_id] => 106
    [name] => Category Name
    [slug] => category-name
    [term_group] => 0
    [term_taxonomy_id] => 108
    [taxonomy] => category
    [description] => This is the category description.
    [parent] => 62
    [count] => 17
    [filter] => raw
    [cat_ID] => 106
    [category_count] => 17
    [category_description] => This is the category description.
    [cat_name] => Category Name
    [category_nicename] => category-name
    [category_parent] => 62
    )


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