Make WordPress Core


Ignore:
Timestamp:
07/11/2014 10:58:08 PM (11 years ago)
Author:
DrewAPicture
Message:

Add indentation for the hash notation missed in [29108].

See #28841.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/bookmark-template.php

    r29108 r29109  
    162162 *     Optional. String or array of arguments to list bookmarks.
    163163 *
    164  * @type string   $orderby          How to order the links by. Accepts post fields. Default 'name'.
    165  * @type string   $order            Whether to order bookmarks in ascending or descending order.
    166  *                                  Accepts 'ASC' (ascending) or 'DESC' (descending). Default 'ASC'.
    167  * @type int      $limit            Amount of bookmarks to display. Accepts 1+ or -1 for all.
    168  *                                  Default -1.
    169  * @type string   $category         Comma-separated list of category ids to include links from.
    170  *                                  Default empty.
    171  * @type string   $category_name    Category to retrieve links for by name. Default empty.
    172  * @type int|bool $hide_invisible   Whether to show or hide links marked as 'invisible'. Accepts
    173  *                                  1|true or 0|false. Default 1|true.
    174  * @type int|bool $show_updated     Whether to display the time the bookmark was last updated.
    175  *                                  Accepts 1|true or 0|false. Default 0|false.
    176  * @type int|bool $echo             Whether to echo or return the formatted bookmarks. Accepts
    177  *                                  1|true (echo) or 0|false (return). Default 1|true.
    178  * @type int|bool $categorize       Whether to show links listed by category or in a single column.
    179  *                                  Accepts 1|true (by category) or 0|false (one column). Default 1|true.
    180  * @type int|bool $show_description Whether to show the bookmark descriptions. Accepts 1|true or 0|false.
    181  *                                  Default 0|false.
    182  * @type string   $title_li         What to show before the links appear. Default 'Bookmarks'.
    183  * @type string   $title_before     The HTML or text to prepend to the $title_li string. Default '<h2>'.
    184  * @type string   $title_after      The HTML or text to append to the $title_li string. Default '</h2>'.
    185  * @type string   $class            The CSS class to use for the $title_li. Default 'linkcat'.
    186  * @type string   $category_before  The HTML or text to prepend to $title_before if $categorize is true.
    187  *                                  String must contain '%id' and '%class' to inherit the category ID and
    188  *                                  the $class argument used for formatting in themes.
    189  *                                  Default '<li id="%id" class="%class">'.
    190  * @type string   $category_after   The HTML or text to append to $title_after if $categorize is true.
    191  *                                  Default '</li>'.
    192  * @type string   $category_orderby How to order the bookmark category based on term scheme if $categorize
    193  *                                  is true. Default 'name'.
    194  * @type string   $category_order   Whether to order categories in ascending or descending order if
    195  *                                  $categorize is true. Accepts 'ASC' (ascending) or 'DESC' (descending).
    196  *                                  Default 'ASC'.
     164 *     @type string   $orderby          How to order the links by. Accepts post fields. Default 'name'.
     165 *     @type string   $order            Whether to order bookmarks in ascending or descending order.
     166 *                                      Accepts 'ASC' (ascending) or 'DESC' (descending). Default 'ASC'.
     167 *     @type int      $limit            Amount of bookmarks to display. Accepts 1+ or -1 for all.
     168 *                                      Default -1.
     169 *     @type string   $category         Comma-separated list of category ids to include links from.
     170 *                                      Default empty.
     171 *     @type string   $category_name    Category to retrieve links for by name. Default empty.
     172 *     @type int|bool $hide_invisible   Whether to show or hide links marked as 'invisible'. Accepts
     173 *                                      1|true or 0|false. Default 1|true.
     174 *     @type int|bool $show_updated     Whether to display the time the bookmark was last updated.
     175 *                                      Accepts 1|true or 0|false. Default 0|false.
     176 *     @type int|bool $echo             Whether to echo or return the formatted bookmarks. Accepts
     177 *                                      1|true (echo) or 0|false (return). Default 1|true.
     178 *     @type int|bool $categorize       Whether to show links listed by category or in a single column.
     179 *                                      Accepts 1|true (by category) or 0|false (one column). Default 1|true.
     180 *     @type int|bool $show_description Whether to show the bookmark descriptions. Accepts 1|true or 0|false.
     181 *                                      Default 0|false.
     182 *     @type string   $title_li         What to show before the links appear. Default 'Bookmarks'.
     183 *     @type string   $title_before     The HTML or text to prepend to the $title_li string. Default '<h2>'.
     184 *     @type string   $title_after      The HTML or text to append to the $title_li string. Default '</h2>'.
     185 *     @type string   $class            The CSS class to use for the $title_li. Default 'linkcat'.
     186 *     @type string   $category_before  The HTML or text to prepend to $title_before if $categorize is true.
     187 *                                      String must contain '%id' and '%class' to inherit the category ID and
     188 *                                      the $class argument used for formatting in themes.
     189 *                                      Default '<li id="%id" class="%class">'.
     190 *     @type string   $category_after   The HTML or text to append to $title_after if $categorize is true.
     191 *                                      Default '</li>'.
     192 *     @type string   $category_orderby How to order the bookmark category based on term scheme if $categorize
     193 *                                      is true. Default 'name'.
     194 *     @type string   $category_order   Whether to order categories in ascending or descending order if
     195 *                                      $categorize is true. Accepts 'ASC' (ascending) or 'DESC' (descending).
     196 *                                      Default 'ASC'.
    197197 * }
    198198 * @return string|null Will only return if echo option is set to not echo. Default is not return anything.
Note: See TracChangeset for help on using the changeset viewer.