Changeset 30202
- Timestamp:
- 11/03/2014 06:16:34 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/deprecated.php
r30201 r30202 275 275 * @param int $user_id User ID. 276 276 * @param bool $exclude_zeros Optional, default is true. Whether to exclude zeros. 277 * @return unknown277 * @return mixed 278 278 */ 279 279 function get_editable_user_ids( $user_id, $exclude_zeros = true, $post_type = 'post' ) { … … 608 608 * @access public 609 609 * 610 * @return unknown610 * @return array 611 611 */ 612 612 function get_results() { … … 941 941 * @deprecated 3.4.0 942 942 * 943 * @return unknown943 * @return array 944 944 */ 945 945 function get_broken_themes() { … … 965 965 * @deprecated 3.4.0 966 966 * 967 * @return unknown967 * @return WP_Theme 968 968 */ 969 969 function current_theme_info() { -
trunk/src/wp-admin/includes/media.php
r30201 r30202 865 865 * @since 2.5.0 866 866 * 867 * @return unknown867 * @return string|null 868 868 */ 869 869 function media_upload_gallery() { … … 888 888 * @since 2.5.0 889 889 * 890 * @return unknown890 * @return string|null 891 891 */ 892 892 function media_upload_library() { -
trunk/src/wp-admin/includes/post.php
r30198 r30202 637 637 * @since 2.1.0 638 638 * 639 * @return unknown639 * @return int|WP_Error 640 640 */ 641 641 function wp_write_post() { … … 706 706 * @since 2.0.0 707 707 * 708 * @return unknown708 * @return int|null 709 709 */ 710 710 function write_post() { … … 776 776 * @since 1.2.0 777 777 * 778 * @return unknown778 * @return mixed 779 779 */ 780 780 function get_meta_keys() { … … 1074 1074 * @param string $id 1075 1075 * @param string $page 1076 * @return unknown1076 * @return string 1077 1077 */ 1078 1078 function postbox_classes( $id, $page ) { -
trunk/src/wp-admin/includes/upgrade.php
r30195 r30202 2040 2040 * @since 1.5.0 2041 2041 * 2042 * @return unknown2042 * @return string|bool 2043 2043 */ 2044 2044 function make_site_theme() { -
trunk/src/wp-admin/includes/user.php
r29966 r30202 196 196 * @since 2.8.0 197 197 * 198 * @return unknown198 * @return array 199 199 */ 200 200 function get_editable_roles() { -
trunk/src/wp-includes/comment.php
r30182 r30202 2205 2205 * 2206 2206 * @param bool $defer 2207 * @return unknown2207 * @return bool 2208 2208 */ 2209 2209 function wp_defer_comment_counting($defer=null) { -
trunk/src/wp-includes/deprecated.php
r30122 r30202 469 469 * specify 'rand' as the order which will return links in a random order. 470 470 * @param int $limit Limit to X entries. If not specified, all entries are shown. 471 * @return unknown471 * @return array 472 472 */ 473 473 function get_linkobjectsbyname($cat_name = "noname" , $orderby = 'name', $limit = -1) { … … 523 523 * order which will return links in a random order. 524 524 * @param int $limit Limit to X entries. If not specified, all entries are shown. 525 * @return unknown525 * @return array 526 526 */ 527 527 function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) { … … 632 632 * @param string $exclude 633 633 * @param bool $hierarchical 634 * @return unknown634 * @return string 635 635 */ 636 636 function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0, … … 651 651 * 652 652 * @param string|array $args 653 * @return unknown653 * @return string 654 654 */ 655 655 function wp_list_cats($args = '') { … … 692 692 * @param int $selected 693 693 * @param int $exclude 694 * @return unknown694 * @return string 695 695 */ 696 696 function dropdown_cats($optionall = 1, $all = 'All', $orderby = 'ID', $order = 'asc', … … 727 727 * @param string $feed 728 728 * @param string $feed_image 729 * @return unknown729 * @return null|string 730 730 */ 731 731 function list_authors($optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '') { … … 744 744 * @param int $blogid Not Used 745 745 * @param int $post_ID 746 * @return unknown746 * @return array 747 747 */ 748 748 function wp_get_post_cats($blogid = '1', $post_ID = 0) { … … 762 762 * @param int $post_ID 763 763 * @param array $post_categories 764 * @return unknown764 * @return bool|mixed 765 765 */ 766 766 function wp_set_post_cats($blogid = '1', $post_ID = 0, $post_categories = array()) { … … 781 781 * @param string $after 782 782 * @param bool $show_post_count 783 * @return unknown783 * @return string|null 784 784 */ 785 785 function get_archives($type='', $limit='', $format='html', $before = '', $after = '', $show_post_count = false) { … … 1099 1099 * 1100 1100 * @param object $link 1101 * @return unknown1101 * @return mixed 1102 1102 */ 1103 1103 function get_linkrating($link) {
Note: See TracChangeset
for help on using the changeset viewer.