get_tags

Definition:
function &get_tags( $args = '' ) {}

Retrieves all post tags.

Parameters

  • string|array $args: Tag arguments to use when retrieving tags.

Return values

returns:List of tags.

Defined filters

  • get_tags
    apply_filters( 'get_tags', $tags, $args )

Source code

function &get_tags( $args = '' ) {

	$tags = get_terms( 'post_tag', $args );



	if ( empty( $tags ) ) {

		$return = array();

		return $return;

	}



	$tags = apply_filters( 'get_tags', $tags, $args );

	return $tags;

}

1719

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: