Inline documentation for hooks in wp-includes/category.php.
Props ben.moody Fixes #25503. Built from https://develop.svn.wordpress.org/trunk@25724 git-svn-id: http://core.svn.wordpress.org/trunk@25637 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0dd024dd70
commit
c79cb5b43f
|
@ -40,7 +40,16 @@ function get_categories( $args = '' ) {
|
||||||
$defaults = array( 'taxonomy' => 'category' );
|
$defaults = array( 'taxonomy' => 'category' );
|
||||||
$args = wp_parse_args( $args, $defaults );
|
$args = wp_parse_args( $args, $defaults );
|
||||||
|
|
||||||
$taxonomy = apply_filters( 'get_categories_taxonomy', $args['taxonomy'], $args );
|
$taxonomy = $args['taxonomy'];
|
||||||
|
/**
|
||||||
|
* Filter the taxonomy used to retrieve terms when calling get_categories().
|
||||||
|
*
|
||||||
|
* @since 2.7.0
|
||||||
|
*
|
||||||
|
* @param string $taxonomy Taxonomy to retrieve terms from.
|
||||||
|
* @param array $args An array of arguments. @see get_terms()
|
||||||
|
*/
|
||||||
|
$taxonomy = apply_filters( 'get_categories_taxonomy', $taxonomy, $args );
|
||||||
|
|
||||||
// Back compat
|
// Back compat
|
||||||
if ( isset($args['type']) && 'link' == $args['type'] ) {
|
if ( isset($args['type']) && 'link' == $args['type'] ) {
|
||||||
|
@ -262,7 +271,15 @@ function get_tags( $args = '' ) {
|
||||||
$return = array();
|
$return = array();
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the array of term objects returned for the 'post_tag' taxonomy.
|
||||||
|
*
|
||||||
|
* @since 2.3.0
|
||||||
|
*
|
||||||
|
* @param array $tags Array of 'post_tag' term objects.
|
||||||
|
* @param array $args An array of arguments. @see get_terms()
|
||||||
|
*/
|
||||||
$tags = apply_filters( 'get_tags', $tags, $args );
|
$tags = apply_filters( 'get_tags', $tags, $args );
|
||||||
return $tags;
|
return $tags;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue