Changeset 49693 for trunk/src/wp-includes/category-template.php
- Timestamp:
- 11/24/2020 09:25:46 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-template.php
r49672 r49693 697 697 * @type bool $echo Whether or not to echo the return value. Default true. 698 698 * } 699 * @return void|string| arrayVoid if 'echo' argument is true, or on failure. Otherwise, tag cloud700 * as a string or an array, depending on 'format' argument.699 * @return void|string|string[] Void if 'echo' argument is true, or on failure. Otherwise, tag cloud 700 * as a string or an array, depending on 'format' argument. 701 701 */ 702 702 function wp_tag_cloud( $args = '' ) { … … 758 758 * @since 2.3.0 759 759 * 760 * @param string| array$return Tag cloud as a string or an array, depending on 'format' argument.761 * @param array $args An array of tag cloud arguments.760 * @param string|string[] $return Tag cloud as a string or an array, depending on 'format' argument. 761 * @param array $args An array of tag cloud arguments. 762 762 */ 763 763 $return = apply_filters( 'wp_tag_cloud', $return, $args ); … … 826 826 * 0, 1, or their bool equivalents. 827 827 * } 828 * @return string| arrayTag cloud as a string or an array, depending on 'format' argument.828 * @return string|string[] Tag cloud as a string or an array, depending on 'format' argument. 829 829 */ 830 830 function wp_generate_tag_cloud( $tags, $args = '' ) { … … 980 980 * @since 4.3.0 981 981 * 982 * @param array $tags_data An array of term data for termused to generate the tag cloud.982 * @param array[] $tags_data An array of term data arrays for terms used to generate the tag cloud. 983 983 */ 984 984 $tags_data = apply_filters( 'wp_generate_tag_cloud_data', $tags_data ); … … 1031 1031 * @see wp_generate_tag_cloud() 1032 1032 * 1033 * @param array|string $return String containing the generated HTML tag cloud output1034 * or an array of tag links if the 'format' argument1035 * equals 'array'.1036 * @param WP_Term[] $tags An array of terms used in the tag cloud.1037 * @param array $args An array of wp_generate_tag_cloud() arguments.1033 * @param string[]|string $return String containing the generated HTML tag cloud output 1034 * or an array of tag links if the 'format' argument 1035 * equals 'array'. 1036 * @param WP_Term[] $tags An array of terms used in the tag cloud. 1037 * @param array $args An array of wp_generate_tag_cloud() arguments. 1038 1038 */ 1039 1039 return apply_filters( 'wp_generate_tag_cloud', $return, $tags, $args );
Note: See TracChangeset
for help on using the changeset viewer.