Make WordPress Core


Ignore:
Timestamp:
11/03/2014 06:16:34 AM (11 years ago)
Author:
wonderboymusic
Message:

Correct all @return unknown instances.

See #30224.

File:
1 edited

Legend:

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

    r30122 r30202  
    469469 *      specify 'rand' as the order which will return links in a random order.
    470470 * @param int $limit Limit to X entries. If not specified, all entries are shown.
    471  * @return unknown
     471 * @return array
    472472 */
    473473function get_linkobjectsbyname($cat_name = "noname" , $orderby = 'name', $limit = -1) {
     
    523523 *      order which will return links in a random order.
    524524 * @param int $limit Limit to X entries. If not specified, all entries are shown.
    525  * @return unknown
     525 * @return array
    526526 */
    527527function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) {
     
    632632 * @param string $exclude
    633633 * @param bool $hierarchical
    634  * @return unknown
     634 * @return string
    635635 */
    636636function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0,
     
    651651 *
    652652 * @param string|array $args
    653  * @return unknown
     653 * @return string
    654654 */
    655655function wp_list_cats($args = '') {
     
    692692 * @param int $selected
    693693 * @param int $exclude
    694  * @return unknown
     694 * @return string
    695695 */
    696696function dropdown_cats($optionall = 1, $all = 'All', $orderby = 'ID', $order = 'asc',
     
    727727 * @param string $feed
    728728 * @param string $feed_image
    729  * @return unknown
     729 * @return null|string
    730730 */
    731731function list_authors($optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '') {
     
    744744 * @param int $blogid Not Used
    745745 * @param int $post_ID
    746  * @return unknown
     746 * @return array
    747747 */
    748748function wp_get_post_cats($blogid = '1', $post_ID = 0) {
     
    762762 * @param int $post_ID
    763763 * @param array $post_categories
    764  * @return unknown
     764 * @return bool|mixed
    765765 */
    766766function wp_set_post_cats($blogid = '1', $post_ID = 0, $post_categories = array()) {
     
    781781 * @param string $after
    782782 * @param bool $show_post_count
    783  * @return unknown
     783 * @return string|null
    784784 */
    785785function get_archives($type='', $limit='', $format='html', $before = '', $after = '', $show_post_count = false) {
     
    10991099 *
    11001100 * @param object $link
    1101  * @return unknown
     1101 * @return mixed
    11021102 */
    11031103function get_linkrating($link) {
Note: See TracChangeset for help on using the changeset viewer.