Changeset 26868
- Timestamp:
- 12/24/2013 06:56:05 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 39 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-activate.php
r25690 r26868 28 28 * Fires before the Site Activation page is loaded. 29 29 * 30 * @since 3.0 30 * @since 3.0.0 31 31 */ 32 32 do_action( 'activate_header' ); … … 41 41 * Fires before the Site Activation page is loaded, but on the wp_head action. 42 42 * 43 * @since 3.0 43 * @since 3.0.0 44 44 */ 45 45 do_action( 'activate_wp_head' ); -
trunk/src/wp-admin/admin-functions.php
r19712 r26868 5 5 * This file is deprecated, use 'wp-admin/includes/admin.php' instead. 6 6 * 7 * @deprecated 2.5 7 * @deprecated 2.5.0 8 8 * @package WordPress 9 9 * @subpackage Administration -
trunk/src/wp-admin/custom-header.php
r26518 r26868 178 178 * Set up the enqueue for the CSS files 179 179 * 180 * @since 2.7 180 * @since 2.7.0 181 181 */ 182 182 function css_includes() { -
trunk/src/wp-admin/includes/ajax-actions.php
r26793 r26868 260 260 * Contrary to normal success AJAX response ("1"), die with time() on success. 261 261 * 262 * @since 2.7 262 * @since 2.7.0 263 263 * 264 264 * @param int $comment_id -
trunk/src/wp-admin/includes/class-ftp-pure.php
r23425 r26868 4 4 * 5 5 * @package PemFTP 6 * @since 2.5 6 * @since 2.5.0 7 7 * 8 8 * @version 1.0 … … 18 18 * @package PemFTP 19 19 * @subpackage Pure 20 * @since 2.5 20 * @since 2.5.0 21 21 * 22 22 * @version 1.0 -
trunk/src/wp-admin/includes/class-ftp-sockets.php
r23425 r26868 4 4 * 5 5 * @package PemFTP 6 * @since 2.5 6 * @since 2.5.0 7 7 * 8 8 * @version 1.0 … … 18 18 * @package PemFTP 19 19 * @subpackage Socket 20 * @since 2.5 20 * @since 2.5.0 21 21 * 22 22 * @version 1.0 -
trunk/src/wp-admin/includes/class-wp-theme-install-list-table.php
r26389 r26868 359 359 * Send required variables to JavaScript land 360 360 * 361 * @since 3.4 361 * @since 3.4.0 362 362 * @access private 363 363 * … … 373 373 * Check to see if the theme is already installed. 374 374 * 375 * @since 3.4 375 * @since 3.4.0 376 376 * @access private 377 377 * -
trunk/src/wp-admin/includes/file.php
r25869 r26868 192 192 * and moving the file to the appropriate directory within the uploads directory. 193 193 * 194 * @since 2.0 194 * @since 2.0.0 195 195 * 196 196 * @uses wp_handle_upload_error -
trunk/src/wp-admin/includes/misc.php
r26814 r26868 347 347 * Saves option for number of rows when listing posts, pages, comments, etc. 348 348 * 349 * @since 2.8 349 * @since 2.8.0 350 350 **/ 351 351 function set_screen_options() { … … 649 649 * Check lock status for posts displayed on the Posts screen 650 650 * 651 * @since 3.6 651 * @since 3.6.0 652 652 */ 653 653 function wp_check_locked_posts( $response, $data, $screen_id ) { … … 680 680 * Check lock status on the New/Edit Post screen and refresh the lock 681 681 * 682 * @since 3.6 682 * @since 3.6.0 683 683 */ 684 684 function wp_refresh_post_lock( $response, $data, $screen_id ) { … … 719 719 * Check nonce expiration on the New/Edit Post screen and refresh if needed 720 720 * 721 * @since 3.6 721 * @since 3.6.0 722 722 */ 723 723 function wp_refresh_post_nonces( $response, $data, $screen_id ) { -
trunk/src/wp-admin/includes/plugin.php
r26851 r26868 1413 1413 * If the slug hasn't been registered properly no url will be returned 1414 1414 * 1415 * @since 3.0 1415 * @since 3.0.0 1416 1416 * 1417 1417 * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) -
trunk/src/wp-admin/includes/template.php
r26736 r26868 1950 1950 * Output the HTML for restoring the post data from DOM storage 1951 1951 * 1952 * @since 3.6 1952 * @since 3.6.0 1953 1953 * @access private 1954 1954 */ -
trunk/src/wp-admin/includes/user.php
r26503 r26868 10 10 * Creates a new user from the "Users" form using $_POST information. 11 11 * 12 * @since 2.0 12 * @since 2.0.0 13 13 * 14 14 * @return null|WP_Error|int Null when adding user, WP_Error or User ID integer when no parameters. … … 23 23 * Used on user-edit.php and profile.php to manage and process user options, passwords etc. 24 24 * 25 * @since 2.0 25 * @since 2.0.0 26 26 * 27 27 * @param int $user_id Optional. User ID. … … 194 194 * user management. 195 195 * 196 * @since 2.8 196 * @since 2.8.0 197 197 * 198 198 * @return unknown -
trunk/src/wp-admin/js/theme-install.js
r26323 r26868 130 130 * Class that provides infinite scroll for Themes admin screens 131 131 * 132 * @since 3.4 132 * @since 3.4.0 133 133 * 134 134 * @uses ajaxurl … … 148 148 * Initializer 149 149 * 150 * @since 3.4 150 * @since 3.4.0 151 151 * @access private 152 152 */ … … 188 188 * If so, requests another page of content from self.ajax(). 189 189 * 190 * @since 3.4 190 * @since 3.4.0 191 191 * @access private 192 192 */ … … 205 205 * Applies results passed from this.ajax() to $outList 206 206 * 207 * @since 3.4 207 * @since 3.4.0 208 208 * @access private 209 209 * … … 228 228 * Queries next page of themes 229 229 * 230 * @since 3.4 230 * @since 3.4.0 231 231 * @access private 232 232 */ -
trunk/src/wp-admin/update-core.php
r26851 r26868 134 134 * Display upgrade WordPress for downloading latest or upgrading automatically form. 135 135 * 136 * @since 2.7 136 * @since 2.7.0 137 137 * 138 138 * @return null … … 354 354 * Upgrade WordPress core display. 355 355 * 356 * @since 2.7 356 * @since 2.7.0 357 357 * 358 358 * @return null -
trunk/src/wp-admin/upgrade-functions.php
r19712 r26868 4 4 * wp-admin/includes/upgrade.php instead. 5 5 * 6 * @deprecated 2.5 6 * @deprecated 2.5.0 7 7 * @package WordPress 8 8 * @subpackage Administration -
trunk/src/wp-includes/atomlib.php
r24190 r26868 8 8 * @author Elias Torres <elias@torrez.us> 9 9 * @version 0.4 10 * @since 2.3 10 * @since 2.3.0 11 11 */ 12 12 -
trunk/src/wp-includes/author-template.php
r25429 r26868 14 14 * Retrieve the author of the current post. 15 15 * 16 * @since 1.5 16 * @since 1.5.0 17 * 17 18 * @uses $authordata The current author's DB object. 18 19 * @uses apply_filters() Calls 'the_author' hook on the author display name. … … 69 70 * Retrieve the author who last edited the current post. 70 71 * 71 * @since 2.8 72 * @since 2.8.0 73 * 72 74 * @uses $post The current post's DB object. 73 75 * @uses get_post_meta() Retrieves the ID of the author who last edited the current post. … … 94 96 * Display the name of the author who last edited the current post. 95 97 * 96 * @since 2.8 98 * @since 2.8.0 99 * 97 100 * @see get_the_author() 98 101 * @return string The author's display name, from get_the_modified_author(). … … 185 188 * 186 189 * @link http://codex.wordpress.org/Template_Tags/the_author_link 187 * @since 2.1 190 * 191 * @since 2.1.0 192 * 188 193 * @uses get_the_author_link() 189 194 */ … … 195 200 * Retrieve the number of posts by the author of the current post. 196 201 * 197 * @since 1.5 202 * @since 1.5.0 203 * 198 204 * @uses $post The current post in the Loop's DB object. 199 205 * @uses count_user_posts() -
trunk/src/wp-includes/cache.php
r25451 r26868 164 164 * Saves the data to the cache. 165 165 * 166 * @since 2.0 166 * @since 2.0.0 167 * 167 168 * @uses $wp_object_cache Object Cache Class 168 169 * @see WP_Object_Cache::set() … … 257 258 * @package WordPress 258 259 * @subpackage Cache 259 * @since 2.0 260 * @since 2.0.0 260 261 */ 261 262 class WP_Object_Cache { -
trunk/src/wp-includes/canonical.php
r25868 r26868 468 468 * DO NOT use this in plugin code. 469 469 * 470 * @since 3.4 470 * @since 3.4.0 471 471 * @access private 472 472 * -
trunk/src/wp-includes/category-template.php
r26588 r26868 1043 1043 * Retrieve tag description. 1044 1044 * 1045 * @since 2.8 1045 * @since 2.8.0 1046 1046 * 1047 1047 * @param int $tag Optional. Tag ID. Will use global tag ID by default. … … 1055 1055 * Retrieve term description. 1056 1056 * 1057 * @since 2.8 1057 * @since 2.8.0 1058 1058 * 1059 1059 * @param int $term Optional. Term ID. Will use global term ID by default. -
trunk/src/wp-includes/class-IXR.php
r21531 r26868 31 31 * 32 32 * @package IXR 33 * @since 1.5 33 * @since 1.5.0 34 34 * 35 35 * @copyright Incutio Ltd 2010 (http://www.incutio.com) … … 44 44 * 45 45 * @package IXR 46 * @since 1.5 46 * @since 1.5.0 47 47 */ 48 48 class IXR_Value { … … 172 172 * 173 173 * @package IXR 174 * @since 1.5 174 * @since 1.5.0 175 175 * 176 176 */ … … 345 345 * 346 346 * @package IXR 347 * @since 1.5 347 * @since 1.5.0 348 348 */ 349 349 class IXR_Server … … 556 556 * 557 557 * @package IXR 558 * @since 1.5 558 * @since 1.5.0 559 559 */ 560 560 class IXR_Request … … 599 599 * 600 600 * @package IXR 601 * @since 1.5 601 * @since 1.5.0 602 602 * 603 603 */ … … 751 751 * 752 752 * @package IXR 753 * @since 1.5 753 * @since 1.5.0 754 754 */ 755 755 class IXR_Error … … 793 793 * 794 794 * @package IXR 795 * @since 1.5 795 * @since 1.5.0 796 796 */ 797 797 class IXR_Date { … … 856 856 * 857 857 * @package IXR 858 * @since 1.5 858 * @since 1.5.0 859 859 */ 860 860 class IXR_Base64 … … 877 877 * 878 878 * @package IXR 879 * @since 1.5 879 * @since 1.5.0 880 880 */ 881 881 class IXR_IntrospectionServer extends IXR_Server … … 1040 1040 * 1041 1041 * @package IXR 1042 * @since 1.5 1042 * @since 1.5.0 1043 1043 */ 1044 1044 class IXR_ClientMulticall extends IXR_Client -
trunk/src/wp-includes/class-http.php
r25880 r26868 1396 1396 * @link http://core.trac.wordpress.org/ticket/4011 Proxy support ticket in WordPress. 1397 1397 * @link http://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_PROXY_BYPASS_HOSTS 1398 * @since 2.8 1398 * @since 2.8.0 1399 1399 */ 1400 1400 class WP_HTTP_Proxy { … … 1403 1403 * Whether proxy connection should be used. 1404 1404 * 1405 * @since 2.8 1405 * @since 2.8.0 1406 * 1406 1407 * @use WP_PROXY_HOST 1407 1408 * @use WP_PROXY_PORT … … 1416 1417 * Whether authentication should be used. 1417 1418 * 1418 * @since 2.8 1419 * @since 2.8.0 1420 * 1419 1421 * @use WP_PROXY_USERNAME 1420 1422 * @use WP_PROXY_PASSWORD … … 1429 1431 * Retrieve the host for the proxy server. 1430 1432 * 1431 * @since 2.8 1433 * @since 2.8.0 1432 1434 * 1433 1435 * @return string … … 1443 1445 * Retrieve the port for the proxy server. 1444 1446 * 1445 * @since 2.8 1447 * @since 2.8.0 1446 1448 * 1447 1449 * @return string … … 1457 1459 * Retrieve the username for proxy authentication. 1458 1460 * 1459 * @since 2.8 1461 * @since 2.8.0 1460 1462 * 1461 1463 * @return string … … 1471 1473 * Retrieve the password for proxy authentication. 1472 1474 * 1473 * @since 2.8 1475 * @since 2.8.0 1474 1476 * 1475 1477 * @return string … … 1485 1487 * Retrieve authentication string for proxy authentication. 1486 1488 * 1487 * @since 2.8 1489 * @since 2.8.0 1488 1490 * 1489 1491 * @return string … … 1496 1498 * Retrieve header string for proxy authentication. 1497 1499 * 1498 * @since 2.8 1500 * @since 2.8.0 1499 1501 * 1500 1502 * @return string … … 1763 1765 * Includes RFC 1950, RFC 1951, and RFC 1952. 1764 1766 * 1765 * @since 2.8 1767 * @since 2.8.0 1766 1768 * @package WordPress 1767 1769 * @subpackage HTTP … … 1774 1776 * Supports the RFC 1951 standard. 1775 1777 * 1776 * @since 2.8 1778 * @since 2.8.0 1777 1779 * 1778 1780 * @param string $raw String to compress. … … 1793 1795 * original compressed string will be returned. 1794 1796 * 1795 * @since 2.8 1797 * @since 2.8.0 1796 1798 * 1797 1799 * @param string $compressed String to decompress. … … 1877 1879 * What encoding types to accept and their priority values. 1878 1880 * 1879 * @since 2.8 1881 * @since 2.8.0 1880 1882 * 1881 1883 * @return string Types of encoding to accept. … … 1911 1913 * What encoding the content used when it was compressed to send in the headers. 1912 1914 * 1913 * @since 2.8 1915 * @since 2.8.0 1914 1916 * 1915 1917 * @return string Content-Encoding string to send in the header. … … 1922 1924 * Whether the content be decoded based on the headers. 1923 1925 * 1924 * @since 2.8 1926 * @since 2.8.0 1925 1927 * 1926 1928 * @param array|string $headers All of the available headers. … … 1945 1947 * disabled. 1946 1948 * 1947 * @since 2.8 1949 * @since 2.8.0 1948 1950 * 1949 1951 * @return bool -
trunk/src/wp-includes/class-phpass.php
r24457 r26868 3 3 * Portable PHP password hashing framework. 4 4 * @package phpass 5 * @since 2.5 5 * @since 2.5.0 6 6 * @version 0.3 / WordPress 7 7 * @link http://www.openwall.com/phpass/ … … 32 32 * @version 0.3 / WordPress 33 33 * @link http://www.openwall.com/phpass/ 34 * @since 2.5 34 * @since 2.5.0 35 35 */ 36 36 class PasswordHash { -
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r26120 r26868 3350 3350 * Retrieves a list of post formats used by the site 3351 3351 * 3352 * @since 3.1 3352 * @since 3.1.0 3353 3353 * 3354 3354 * @param array $args Method parameters. Contains: -
trunk/src/wp-includes/comment-template.php
r26353 r26868 140 140 * @global object $comment The current Comment row object. 141 141 * 142 * @since 2.7 142 * @since 2.7.0 143 143 * 144 144 * @param string $linktext Optional. The text to display instead of the comment author's email address. Default empty. -
trunk/src/wp-includes/default-constants.php
r26024 r26868 161 161 /** 162 162 * Used to guarantee unique hash cookies 163 * @since 1.5 163 * 164 * @since 1.5.0 164 165 */ 165 166 if ( !defined( 'COOKIEHASH' ) ) { -
trunk/src/wp-includes/deprecated.php
r25640 r26868 54 54 * 55 55 * @since 1.0.1 56 * @deprecated 1.5 56 * @deprecated 1.5.0 57 57 * @deprecated Use The Loop - {@link http://codex.wordpress.org/The_Loop Use new WordPress Loop} 58 58 */ … … 122 122 * Prints link to the previous post. 123 123 * 124 * @since 1.5 125 * @deprecated 2.0 124 * @since 1.5.0 125 * @deprecated 2.0.0 126 126 * @deprecated Use previous_post_link() 127 127 * @see previous_post_link() … … 160 160 * 161 161 * @since 0.71 162 * @deprecated 2.0 162 * @deprecated 2.0.0 163 163 * @deprecated Use next_post_link() 164 164 * @see next_post_link() … … 195 195 * Whether user can create a post. 196 196 * 197 * @since 1.5 198 * @deprecated 2.0 197 * @since 1.5.0 198 * @deprecated 2.0.0 199 199 * @deprecated Use current_user_can() 200 200 * @see current_user_can() … … 215 215 * Whether user can create a post. 216 216 * 217 * @since 1.5 218 * @deprecated 2.0 217 * @since 1.5.0 218 * @deprecated 2.0.0 219 219 * @deprecated Use current_user_can() 220 220 * @see current_user_can() … … 235 235 * Whether user can edit a post. 236 236 * 237 * @since 1.5 238 * @deprecated 2.0 237 * @since 1.5.0 238 * @deprecated 2.0.0 239 239 * @deprecated Use current_user_can() 240 240 * @see current_user_can() … … 264 264 * Whether user can delete a post. 265 265 * 266 * @since 1.5 267 * @deprecated 2.0 266 * @since 1.5.0 267 * @deprecated 2.0.0 268 268 * @deprecated Use current_user_can() 269 269 * @see current_user_can() … … 284 284 * Whether user can set new posts' dates. 285 285 * 286 * @since 1.5 287 * @deprecated 2.0 286 * @since 1.5.0 287 * @deprecated 2.0.0 288 288 * @deprecated Use current_user_can() 289 289 * @see current_user_can() … … 304 304 * Whether user can delete a post. 305 305 * 306 * @since 1.5 307 * @deprecated 2.0 306 * @since 1.5.0 307 * @deprecated 2.0.0 308 308 * @deprecated Use current_user_can() 309 309 * @see current_user_can() … … 324 324 * Whether user can delete a post. 325 325 * 326 * @since 1.5 327 * @deprecated 2.0 326 * @since 1.5.0 327 * @deprecated 2.0.0 328 328 * @deprecated Use current_user_can() 329 329 * @see current_user_can() … … 344 344 * Whether user can delete a post. 345 345 * 346 * @since 1.5 347 * @deprecated 2.0 346 * @since 1.5.0 347 * @deprecated 2.0.0 348 348 * @deprecated Use current_user_can() 349 349 * @see current_user_can() … … 364 364 * Can user can edit other user. 365 365 * 366 * @since 1.5 367 * @deprecated 2.0 366 * @since 1.5.0 367 * @deprecated 2.0.0 368 368 * @deprecated Use current_user_can() 369 369 * @see current_user_can() … … 388 388 * 389 389 * @since 0.71 390 * @deprecated 2.1 390 * @deprecated 2.1.0 391 391 * @deprecated Use get_bookmarks() 392 392 * @see get_bookmarks() … … 422 422 * 423 423 * @since 1.0.1 424 * @deprecated 2.1 424 * @deprecated 2.1.0 425 425 * @deprecated Use wp_list_bookmarks() 426 426 * @see wp_list_bookmarks() … … 460 460 * 461 461 * @since 1.0.1 462 * @deprecated 2.1 462 * @deprecated 2.1.0 463 463 * @deprecated Use get_bookmarks() 464 464 * @see get_bookmarks() … … 513 513 * 514 514 * @since 1.0.1 515 * @deprecated 2.1 515 * @deprecated 2.1.0 516 516 * @deprecated Use get_bookmarks() 517 517 * @see get_bookmarks() … … 541 541 * 542 542 * @since 0.71 543 * @deprecated 2.1 543 * @deprecated 2.1.0 544 544 * @deprecated Use get_bookmarks() 545 545 * @see get_bookmarks() … … 569 569 * 570 570 * @since 0.71 571 * @deprecated 2.1 571 * @deprecated 2.1.0 572 572 * @deprecated Use get_bookmarks() 573 573 * @see get_bookmarks() … … 597 597 * 598 598 * @since 0.71 599 * @deprecated 2.1 599 * @deprecated 2.1.0 600 600 * @deprecated No alternative function available 601 601 * … … 610 610 /** 611 611 * @since 0.71 612 * @deprecated 2.1 612 * @deprecated 2.1.0 613 613 * @deprecated Use wp_list_categories() 614 614 * @see wp_list_categories() … … 645 645 646 646 /** 647 * @since 1.2 648 * @deprecated 2.1 647 * @since 1.2.0 648 * @deprecated 2.1.0 649 649 * @deprecated Use wp_list_categories() 650 650 * @see wp_list_categories() … … 678 678 /** 679 679 * @since 0.71 680 * @deprecated 2.1 680 * @deprecated 2.1.0 681 681 * @deprecated Use wp_dropdown_categories() 682 682 * @see wp_dropdown_categories() … … 714 714 715 715 /** 716 * @since 1.2 717 * @deprecated 2.1 716 * List authors. 717 * 718 * @since 1.2.0 719 * @deprecated 2.1.0 718 720 * @deprecated Use wp_list_authors() 719 721 * @see wp_list_authors() … … 736 738 /** 737 739 * @since 1.0.1 738 * @deprecated 2.1 740 * @deprecated 2.1.0 739 741 * @deprecated Use wp_get_post_categories() 740 742 * @see wp_get_post_categories() … … 753 755 * 754 756 * @since 1.0.1 755 * @deprecated 2.1 757 * @deprecated 2.1.0 756 758 * @deprecated Use wp_set_post_categories() 757 759 * @see wp_set_post_categories() … … 769 771 /** 770 772 * @since 0.71 771 * @deprecated 2.1 773 * @deprecated 2.1.0 772 774 * @deprecated Use wp_get_archives() 773 775 * @see wp_get_archives() … … 790 792 * Returns or Prints link to the author's posts. 791 793 * 792 * @since 1.2 793 * @deprecated 2.1 794 * @since 1.2.0 795 * @deprecated 2.1.0 794 796 * @deprecated Use get_author_posts_url() 795 797 * @see get_author_posts_url() … … 814 816 * 815 817 * @since 0.71 816 * @deprecated 2.1 818 * @deprecated 2.1.0 817 819 * @deprecated Use wp_link_pages() 818 820 * @see wp_link_pages() … … 839 841 * 840 842 * @since 0.71 841 * @deprecated 2.1 843 * @deprecated 2.1.0 842 844 * @deprecated Use get_option() 843 845 * @see get_option() … … 856 858 * 857 859 * @since 0.71 858 * @deprecated 1.2 860 * @deprecated 1.2.0 859 861 * @deprecated Use the_permalink() 860 862 * @see the_permalink() … … 869 871 * 870 872 * @since 0.71 871 * @deprecated 2.3 873 * @deprecated 2.3.0 872 874 * @deprecated Use the_permalink_rss() 873 875 * @see the_permalink_rss() … … 885 887 * @see get_links() for argument information that can be used in $args 886 888 * @since 1.0.1 887 * @deprecated 2.1 889 * @deprecated 2.1.0 888 890 * @deprecated Use wp_list_bookmarks() 889 891 * @see wp_list_bookmarks() … … 925 927 * 926 928 * @since 0.71 927 * @deprecated 2.1 929 * @deprecated 2.1.0 928 930 * @deprecated Use get_bookmarks() 929 931 * @see get_bookmarks() … … 1034 1036 * 1035 1037 * @since 1.0.1 1036 * @deprecated 2.1 1038 * @deprecated 2.1.0 1037 1039 * @deprecated Use wp_list_bookmarks() 1038 1040 * @see wp_list_bookmarks() … … 1077 1079 * 1078 1080 * @since 0.71 1079 * @deprecated 2.1 1081 * @deprecated 2.1.0 1080 1082 * @deprecated {@internal Use function instead is unknown}} 1081 1083 * … … 1092 1094 /** 1093 1095 * @since 1.0.1 1094 * @deprecated 2.1 1096 * @deprecated 2.1.0 1095 1097 * @deprecated Use sanitize_bookmark_field() 1096 1098 * @see sanitize_bookmark_field() … … 1108 1110 * 1109 1111 * @since 0.71 1110 * @deprecated 2.1 1112 * @deprecated 2.1.0 1111 1113 * @deprecated Use get_category() 1112 1114 * @see get_category() … … 1138 1140 * 1139 1141 * @since 1.0.1 1140 * @deprecated 2.5 1142 * @deprecated 2.5.0 1141 1143 * @deprecated Use post_comments_feed_link() 1142 1144 * @see post_comments_feed_link() … … 1152 1154 * Print/Return link to category RSS2 feed. 1153 1155 * 1154 * @since 1.2 1155 * @deprecated 2.5 1156 * @since 1.2.0 1157 * @deprecated 2.5.0 1156 1158 * @deprecated Use get_category_feed_link() 1157 1159 * @see get_category_feed_link() … … 1174 1176 * Print/Return link to author RSS feed. 1175 1177 * 1176 * @since 1.2 1177 * @deprecated 2.5 1178 * @since 1.2.0 1179 * @deprecated 2.5.0 1178 1180 * @deprecated Use get_author_feed_link() 1179 1181 * @see get_author_feed_link() … … 1195 1197 * Return link to the post RSS feed. 1196 1198 * 1197 * @since 1.5 1198 * @deprecated 2.2 1199 * @since 1.5.0 1200 * @deprecated 2.2.0 1199 1201 * @deprecated Use get_post_comments_feed_link() 1200 1202 * @see get_post_comments_feed_link() … … 1210 1212 * An alias of wp_create_user(). 1211 1213 * 1212 * @since 2.0 1213 * @deprecated 2.0 1214 * @since 2.0.0 1215 * @deprecated 2.0.0 1214 1216 * @deprecated Use wp_create_user() 1215 1217 * @see wp_create_user() … … 1228 1230 * Unused function. 1229 1231 * 1230 * @deprecated 2.5 1232 * @deprecated 2.5.0 1231 1233 */ 1232 1234 function gzip_compression() { … … 1239 1241 * 1240 1242 * @since 0.71 1241 * @deprecated 2.7 1243 * @deprecated 2.7.0 1242 1244 * @deprecated Use get_comment() 1243 1245 * @see get_comment() … … 1257 1259 * 1258 1260 * @since 0.71 1259 * @deprecated 2.8 1261 * @deprecated 2.8.0 1260 1262 * @deprecated Use get_cat_name() 1261 1263 * @see get_cat_name() … … 1273 1275 * 1274 1276 * @since 1.2.0 1275 * @deprecated 2.8 1277 * @deprecated 2.8.0 1276 1278 * @deprecated Use get_term_children() 1277 1279 * @see get_term_children() … … 1310 1312 * Retrieve the description of the author of the current post. 1311 1313 * 1312 * @since 1.5 1313 * @deprecated 2.8 1314 * @since 1.5.0 1315 * @deprecated 2.8.0 1314 1316 * @deprecated Use get_the_author_meta('description') 1315 1317 * @see get_the_author_meta() … … 1326 1328 * 1327 1329 * @since 1.0.0 1328 * @deprecated 2.8 1330 * @deprecated 2.8.0 1329 1331 * @deprecated Use the_author_meta('description') 1330 1332 * @see the_author_meta() … … 1338 1340 * Retrieve the login name of the author of the current post. 1339 1341 * 1340 * @since 1.5 1341 * @deprecated 2.8 1342 * @since 1.5.0 1343 * @deprecated 2.8.0 1342 1344 * @deprecated Use get_the_author_meta('login') 1343 1345 * @see get_the_author_meta() … … 1354 1356 * 1355 1357 * @since 0.71 1356 * @deprecated 2.8 1358 * @deprecated 2.8.0 1357 1359 * @deprecated Use the_author_meta('login') 1358 1360 * @see the_author_meta() … … 1366 1368 * Retrieve the first name of the author of the current post. 1367 1369 * 1368 * @since 1.5 1369 * @deprecated 2.8 1370 * @since 1.5.0 1371 * @deprecated 2.8.0 1370 1372 * @deprecated Use get_the_author_meta('first_name') 1371 1373 * @see get_the_author_meta() … … 1382 1384 * 1383 1385 * @since 0.71 1384 * @deprecated 2.8 1386 * @deprecated 2.8.0 1385 1387 * @deprecated Use the_author_meta('first_name') 1386 1388 * @see the_author_meta() … … 1394 1396 * Retrieve the last name of the author of the current post. 1395 1397 * 1396 * @since 1.5 1397 * @deprecated 2.8 1398 * @since 1.5.0 1399 * @deprecated 2.8.0 1398 1400 * @deprecated Use get_the_author_meta('last_name') 1399 1401 * @see get_the_author_meta() … … 1410 1412 * 1411 1413 * @since 0.71 1412 * @deprecated 2.8 1414 * @deprecated 2.8.0 1413 1415 * @deprecated Use the_author_meta('last_name') 1414 1416 * @see the_author_meta() … … 1422 1424 * Retrieve the nickname of the author of the current post. 1423 1425 * 1424 * @since 1.5 1425 * @deprecated 2.8 1426 * @since 1.5.0 1427 * @deprecated 2.8.0 1426 1428 * @deprecated Use get_the_author_meta('nickname') 1427 1429 * @see get_the_author_meta() … … 1438 1440 * 1439 1441 * @since 0.71 1440 * @deprecated 2.8 1442 * @deprecated 2.8.0 1441 1443 * @deprecated Use the_author_meta('nickname') 1442 1444 * @see the_author_meta() … … 1450 1452 * Retrieve the email of the author of the current post. 1451 1453 * 1452 * @since 1.5 1453 * @deprecated 2.8 1454 * @since 1.5.0 1455 * @deprecated 2.8.0 1454 1456 * @deprecated Use get_the_author_meta('email') 1455 1457 * @see get_the_author_meta() … … 1466 1468 * 1467 1469 * @since 0.71 1468 * @deprecated 2.8 1470 * @deprecated 2.8.0 1469 1471 * @deprecated Use the_author_meta('email') 1470 1472 * @see the_author_meta() … … 1478 1480 * Retrieve the ICQ number of the author of the current post. 1479 1481 * 1480 * @since 1.5 1481 * @deprecated 2.8 1482 * @since 1.5.0 1483 * @deprecated 2.8.0 1482 1484 * @deprecated Use get_the_author_meta('icq') 1483 1485 * @see get_the_author_meta() … … 1494 1496 * 1495 1497 * @since 0.71 1496 * @deprecated 2.8 1498 * @deprecated 2.8.0 1497 1499 * @deprecated Use the_author_meta('icq') 1498 1500 * @see the_author_meta() … … 1506 1508 * Retrieve the Yahoo! IM name of the author of the current post. 1507 1509 * 1508 * @since 1.5 1509 * @deprecated 2.8 1510 * @since 1.5.0 1511 * @deprecated 2.8.0 1510 1512 * @deprecated Use get_the_author_meta('yim') 1511 1513 * @see get_the_author_meta() … … 1522 1524 * 1523 1525 * @since 0.71 1524 * @deprecated 2.8 1526 * @deprecated 2.8.0 1525 1527 * @deprecated Use the_author_meta('yim') 1526 1528 * @see the_author_meta() … … 1534 1536 * Retrieve the MSN address of the author of the current post. 1535 1537 * 1536 * @since 1.5 1537 * @deprecated 2.8 1538 * @since 1.5.0 1539 * @deprecated 2.8.0 1538 1540 * @deprecated Use get_the_author_meta('msn') 1539 1541 * @see get_the_author_meta() … … 1550 1552 * 1551 1553 * @since 0.71 1552 * @deprecated 2.8 1554 * @deprecated 2.8.0 1553 1555 * @deprecated Use the_author_meta('msn') 1554 1556 * @see the_author_meta() … … 1562 1564 * Retrieve the AIM address of the author of the current post. 1563 1565 * 1564 * @since 1.5 1565 * @deprecated 2.8 1566 * @since 1.5.0 1567 * @deprecated 2.8.0 1566 1568 * @deprecated Use get_the_author_meta('aim') 1567 1569 * @see get_the_author_meta() … … 1579 1581 * @since 0.71 1580 1582 * @see the_author_meta() 1581 * @deprecated 2.8 1583 * @deprecated 2.8.0 1582 1584 * @deprecated Use the_author_meta('aim') 1583 1585 */ … … 1591 1593 * 1592 1594 * @since 1.0.0 1593 * @deprecated 2.8 1595 * @deprecated 2.8.0 1594 1596 * @deprecated Use get_the_author_meta('display_name') 1595 1597 * @see get_the_author_meta() … … 1606 1608 * Retrieve the URL to the home page of the author of the current post. 1607 1609 * 1608 * @since 1.5 1609 * @deprecated 2.8 1610 * @since 1.5.0 1611 * @deprecated 2.8.0 1610 1612 * @deprecated Use get_the_author_meta('url') 1611 1613 * @see get_the_author_meta() … … 1622 1624 * 1623 1625 * @since 0.71 1624 * @deprecated 2.8 1626 * @deprecated 2.8.0 1625 1627 * @deprecated Use the_author_meta('url') 1626 1628 * @see the_author_meta() … … 1634 1636 * Retrieve the ID of the author of the current post. 1635 1637 * 1636 * @since 1.5 1637 * @deprecated 2.8 1638 * @since 1.5.0 1639 * @deprecated 2.8.0 1638 1640 * @deprecated Use get_the_author_meta('ID') 1639 1641 * @see get_the_author_meta() … … 1650 1652 * 1651 1653 * @since 0.71 1652 * @deprecated 2.8 1654 * @deprecated 2.8.0 1653 1655 * @deprecated Use the_author_meta('ID') 1654 1656 * @see the_author_meta() … … 1786 1788 * contains a context after its last vertical bar. 1787 1789 * 1788 * @since 2.5 1790 * @since 2.5.0 1789 1791 * @uses translate() 1790 1792 * @deprecated 3.0.0 … … 1835 1837 * Register plural strings in POT file, but don't translate them. 1836 1838 * 1837 * @since 2.5 1839 * @since 2.5.0 1838 1840 * @deprecated 2.8.0 1839 1841 * @deprecated Use _n_noop() -
trunk/src/wp-includes/feed.php
r26644 r26868 58 58 * @package WordPress 59 59 * @subpackage Feed 60 * @since 2.5 60 * @since 2.5.0 61 61 * @uses apply_filters() Calls 'default_feed' hook on the default feed string. 62 62 * … … 447 447 * @package WordPress 448 448 * @subpackage Feed 449 * @since 2.5 449 * @since 2.5.0 450 450 * 451 451 * @param string $data Input string … … 485 485 * @package WordPress 486 486 * @subpackage Feed 487 * @since 2.5 487 * @since 2.5.0 488 488 */ 489 489 function self_link() { … … 519 519 * Build SimplePie object based on RSS or Atom feed from URL. 520 520 * 521 * @since 2.8 521 * @since 2.8.0 522 522 * 523 523 * @param mixed $url URL of feed to retrieve. If an array of URLs, the feeds are merged -
trunk/src/wp-includes/link-template.php
r26120 r26868 579 579 * can be requested or left blank to get the default feed. 580 580 * 581 * @since 3.0 581 * @since 3.0.0 582 582 * 583 583 * @param int $term_id ID of a category. … … 1712 1712 * Return post pages link navigation for previous and next pages. 1713 1713 * 1714 * @since 2.8 1714 * @since 2.8.0 1715 1715 * 1716 1716 * @param string|array $args Optional args. -
trunk/src/wp-includes/nav-menu-template.php
r25868 r26868 386 386 * 387 387 * @access private 388 * @since 3.0 388 * @since 3.0.0 389 389 * 390 390 * @param array $menu_items The current menu item objects to which to add the class property information. -
trunk/src/wp-includes/pluggable-deprecated.php
r24320 r26868 58 58 * Retrieve user info by email. 59 59 * 60 * @since 2.5 60 * @since 2.5.0 61 61 * @deprecated 3.3.0 62 62 * @deprecated Use get_user_by('email') … … 75 75 * Sets a cookie for a user who just logged in. This function is deprecated. 76 76 * 77 * @since 1.5 78 * @deprecated 2.5 77 * @since 1.5.0 78 * @deprecated 2.5.0 79 79 * @deprecated Use wp_set_auth_cookie() 80 80 * @see wp_set_auth_cookie() … … 100 100 * Clears the authentication cookie, logging the user out. This function is deprecated. 101 101 * 102 * @since 1.5 103 * @deprecated 2.5 102 * @since 1.5.0 103 * @deprecated 2.5.0 104 104 * @deprecated Use wp_clear_auth_cookie() 105 105 * @see wp_clear_auth_cookie() … … 121 121 * 122 122 * @since 2.0.3 123 * @deprecated 2.5 123 * @deprecated 2.5.0 124 124 * @deprecated No alternative 125 125 * -
trunk/src/wp-includes/pluggable.php
r26388 r26868 507 507 * should be and compares the two. 508 508 * 509 * @since 2.5 509 * @since 2.5.0 510 510 * 511 511 * @param string $cookie Optional. If used, will validate contents instead of cookie's … … 562 562 * Generate authentication cookie contents. 563 563 * 564 * @since 2.5 564 * @since 2.5.0 565 * 565 566 * @uses apply_filters() Calls 'auth_cookie' hook on $cookie contents, User ID 566 567 * and expiration of cookie. … … 589 590 * Parse a cookie into its components 590 591 * 591 * @since 2.7 592 * @since 2.7.0 592 593 * 593 594 * @param string $cookie … … 640 641 * set, the cookies will be kept for 14 days or two weeks. 641 642 * 642 * @since 2.5 643 * @since 2.5.0 643 644 * 644 645 * @param int $user_id User ID … … 688 689 * Removes all of the cookies associated with authentication. 689 690 * 690 * @since 2.5 691 * @since 2.5.0 691 692 */ 692 693 function wp_clear_auth_cookie() { … … 736 737 * Checks if a user is logged in, if not it redirects them to the login page. 737 738 * 738 * @since 1.5 739 * @since 1.5.0 739 740 */ 740 741 function auth_redirect() { … … 904 905 * Sanitizes a URL for use in a redirect. 905 906 * 906 * @since 2.3 907 * @since 2.3.0 907 908 * 908 909 * @return string redirect-sanitized URL … … 931 932 * but only used in a few places. 932 933 * 933 * @since 2.3 934 * @since 2.3.0 935 * 934 936 * @uses wp_validate_redirect() To validate the redirect is to an allowed host. 935 937 * … … 1166 1168 * Notifies the moderator of the blog about a new comment that is awaiting approval. 1167 1169 * 1168 * @since 1.0 1170 * @since 1.0.0 1171 * 1169 1172 * @uses $wpdb 1170 1173 * … … 1252 1255 * Notify the blog admin of a user changing password, normally via email. 1253 1256 * 1254 * @since 2.7 1257 * @since 2.7.0 1255 1258 * 1256 1259 * @param object $user User Object … … 1273 1276 * Notify the blog admin of a new user, normally via email. 1274 1277 * 1275 * @since 2.0 1278 * @since 2.0.0 1276 1279 * 1277 1280 * @param int $user_id User ID … … 1310 1313 * updated, e.g. by autosave. 1311 1314 * 1312 * @since 2.5 1315 * @since 2.5.0 1313 1316 * 1314 1317 * @return int … … 1402 1405 * common dictionary strings. The added values makes it harder to crack. 1403 1406 * 1404 * @since 2.5 1407 * @since 2.5.0 1405 1408 * 1406 1409 * @link https://api.wordpress.org/secret-key/1.1/salt/ Create secrets for wp-config.php … … 1486 1489 * instead use the other package password checking algorithm. 1487 1490 * 1488 * @since 2.5 1491 * @since 2.5.0 1492 * 1489 1493 * @global object $wp_hasher PHPass object 1490 1494 * @uses PasswordHash::HashPassword … … 1518 1522 * instead use the other package password checking algorithm. 1519 1523 * 1520 * @since 2.5 1524 * @since 2.5.0 1525 * 1521 1526 * @global object $wp_hasher PHPass object used for checking the password 1522 1527 * against the $hash + $password … … 1560 1565 * Generates a random password drawn from the defined set of characters. 1561 1566 * 1562 * @since 2.5 1567 * @since 2.5.0 1563 1568 * 1564 1569 * @param int $length The length of password to generate … … 1639 1644 * instead use the other package password checking algorithm. 1640 1645 * 1641 * @since 2.5 1646 * @since 2.5.0 1647 * 1642 1648 * @uses $wpdb WordPress database object for queries 1643 1649 * @uses wp_hash_password() Used to encrypt the user's password before passing to the database … … 1660 1666 * Retrieve the avatar for a user who provided a user ID or email address. 1661 1667 * 1662 * @since 2.5 1668 * @since 2.5.0 1669 * 1663 1670 * @param int|string|object $id_or_email A user ID, email address, or comment object 1664 1671 * @param int $size Size of the avatar image … … 1774 1781 * the title. 1775 1782 * 1776 * @since 2.6 1783 * @since 2.6.0 1784 * 1777 1785 * @see wp_parse_args() Used to change defaults to user defined settings. 1778 1786 * @uses Text_Diff -
trunk/src/wp-includes/plugin.php
r25607 r26868 17 17 * @package WordPress 18 18 * @subpackage Plugin 19 * @since 1.5 19 * @since 1.5.0 20 20 */ 21 21 … … 94 94 * @package WordPress 95 95 * @subpackage Plugin 96 * @since 2.5 96 * @since 2.5.0 97 * 97 98 * @global array $wp_filter Stores all of the filters 98 99 * … … 276 277 * @package WordPress 277 278 * @subpackage Plugin 278 * @since 1.2 279 * 280 * @since 1.2.0 279 281 * 280 282 * @param string $tag The filter hook to which the function to be removed is hooked. … … 302 304 * Remove all of the hooks from a filter. 303 305 * 304 * @since 2.7 306 * @since 2.7.0 305 307 * 306 308 * @param string $tag The filter to remove hooks from. … … 329 331 * @package WordPress 330 332 * @subpackage Plugin 331 * @since 2.5 333 * @since 2.5.0 332 334 * 333 335 * @return string Hook name of the current filter or action. … … 350 352 * @package WordPress 351 353 * @subpackage Plugin 352 * @since 1.2 354 * 355 * @since 1.2.0 353 356 * 354 357 * @param string $tag The name of the action to which the $function_to_add is hooked. … … 376 379 * @package WordPress 377 380 * @subpackage Plugin 378 * @since 1.2 381 * 382 * @since 1.2.0 383 * 379 384 * @global array $wp_filter Stores all of the filters 380 385 * @global array $wp_actions Increments the amount of times action was triggered. … … 439 444 * @package WordPress 440 445 * @subpackage Plugin 441 * @since 2.1 446 * @since 2.1.0 447 * 442 448 * @global array $wp_actions Increments the amount of times action was triggered. 443 449 * … … 462 468 * @package WordPress 463 469 * @subpackage Plugin 464 * @since 2.1 470 * @since 2.1.0 471 * 465 472 * @global array $wp_filter Stores all of the filters 466 473 * @global array $wp_actions Increments the amount of times action was triggered. … … 517 524 * @package WordPress 518 525 * @subpackage Plugin 519 * @since 2.5 526 * @since 2.5.0 527 * 520 528 * @see has_filter() has_action() is an alias of has_filter(). 521 529 * … … 540 548 * @package WordPress 541 549 * @subpackage Plugin 542 * @since 1.2 550 * 551 * @since 1.2.0 543 552 * 544 553 * @param string $tag The action hook to which the function to be removed is hooked. … … 554 563 * Remove all of the hooks from an action. 555 564 * 556 * @since 2.7 565 * @since 2.7.0 557 566 * 558 567 * @param string $tag The action to remove hooks from. … … 575 584 * @package WordPress 576 585 * @subpackage Plugin 577 * @since 1.5 586 * 587 * @since 1.5.0 578 588 * 579 589 * @access private … … 599 609 * @package WordPress 600 610 * @subpackage Plugin 601 * @since 2.8 611 * @since 2.8.0 602 612 * 603 613 * @param string $file The filename of the plugin (__FILE__) … … 612 622 * @package WordPress 613 623 * @subpackage Plugin 614 * @since 2.8 624 * @since 2.8.0 615 625 * 616 626 * @param string $file The filename of the plugin (__FILE__) … … 636 646 * @package WordPress 637 647 * @subpackage Plugin 638 * @since 2.0 648 * @since 2.0.0 639 649 * 640 650 * @param string $file The filename of the plugin including the path. … … 661 671 * @package WordPress 662 672 * @subpackage Plugin 663 * @since 2.0 673 * @since 2.0.0 664 674 * 665 675 * @param string $file The filename of the plugin including the path. … … 691 701 * executing. 692 702 * 693 * @since 2.7 703 * @since 2.7.0 694 704 * 695 705 * @param string $file … … 723 733 * @package WordPress 724 734 * @subpackage Plugin 725 * @since 2.5 735 * @since 2.5.0 726 736 * @access private 727 737 * -
trunk/src/wp-includes/post-thumbnail-template.php
r25513 r26868 50 50 * Update cache for thumbnails in the current loop 51 51 * 52 * @since 3.2 52 * @since 3.2.0 53 53 * 54 54 * @param object $wp_query Optional. A WP_Query instance. Defaults to the $wp_query global. -
trunk/src/wp-includes/script-loader.php
r26799 r26868 715 715 * print_footer_scripts() is called in the footer to print these scripts. 716 716 * 717 * @since 2.8 717 * @since 2.8.0 718 718 * 719 719 * @see wp_print_scripts() … … 744 744 * Prints the scripts that were queued for the footer or too late for the HTML head. 745 745 * 746 * @since 2.8 746 * @since 2.8.0 747 747 */ 748 748 function print_footer_scripts() { … … 800 800 * wp_print_footer_scripts() is called in the footer to print these scripts. 801 801 * 802 * @since 2.8 802 * @since 2.8.0 803 803 */ 804 804 function wp_print_head_scripts() { … … 829 829 * Hooks to print the scripts and styles in the footer. 830 830 * 831 * @since 2.8 831 * @since 2.8.0 832 832 */ 833 833 function wp_print_footer_scripts() { … … 841 841 * Runs first in wp_head() where all is_home(), is_page(), etc. functions are available. 842 842 * 843 * @since 2.8 843 * @since 2.8.0 844 844 */ 845 845 function wp_enqueue_scripts() { … … 850 850 * Prints the styles queue in the HTML head on admin pages. 851 851 * 852 * @since 2.8 852 * @since 2.8.0 853 853 */ 854 854 function print_admin_styles() { … … 924 924 * Determine the concatenation and compression settings for scripts and styles. 925 925 * 926 * @since 2.8 926 * @since 2.8.0 927 927 */ 928 928 function script_concat_settings() { -
trunk/src/wp-includes/shortcodes.php
r25880 r26868 30 30 * @package WordPress 31 31 * @subpackage Shortcodes 32 * @since 2.5 32 * @since 2.5.0 33 33 */ 34 34 … … 36 36 * Container for storing shortcode tags and their hook to call for the shortcode 37 37 * 38 * @since 2.5 38 * @since 2.5.0 39 * 39 40 * @name $shortcode_tags 40 41 * @var array … … 85 86 * </code> 86 87 * 87 * @since 2.5 88 * @since 2.5.0 89 * 88 90 * @uses $shortcode_tags 89 91 * … … 101 103 * Removes hook for shortcode. 102 104 * 103 * @since 2.5 105 * @since 2.5.0 106 * 104 107 * @uses $shortcode_tags 105 108 * … … 119 122 * for removing all shortcodes. 120 123 * 121 * @since 2.5 124 * @since 2.5.0 125 * 122 126 * @uses $shortcode_tags 123 127 */ … … 172 176 * the shortcode will still show up in the post or content. 173 177 * 174 * @since 2.5 178 * @since 2.5.0 179 * 175 180 * @uses $shortcode_tags 176 181 * @uses get_shortcode_regex() Gets the search pattern for searching shortcodes. … … 204 209 * 6 - An extra ] to allow for escaping shortcodes with double [[]] 205 210 * 206 * @since 2.5 211 * @since 2.5.0 212 * 207 213 * @uses $shortcode_tags 208 214 * … … 251 257 * @see get_shortcode_regex for details of the match array contents. 252 258 * 253 * @since 2.5 259 * @since 2.5.0 254 260 * @access private 255 261 * @uses $shortcode_tags … … 285 291 * retrieval of the attributes, since all attributes have to be known. 286 292 * 287 * @since 2.5 293 * @since 2.5.0 288 294 * 289 295 * @param string $text … … 323 329 * removed from the final returned list. 324 330 * 325 * @since 2.5 331 * @since 2.5.0 326 332 * 327 333 * @param array $pairs Entire list of supported attributes and their defaults. … … 360 366 * Remove all shortcode tags from the given content. 361 367 * 362 * @since 2.5 368 * @since 2.5.0 369 * 363 370 * @uses $shortcode_tags 364 371 * -
trunk/src/wp-includes/taxonomy.php
r26544 r26868 2338 2338 * @package WordPress 2339 2339 * @subpackage Taxonomy 2340 * @since 3.6 2340 * @since 3.6.0 2341 2341 * @uses wp_set_object_terms() 2342 2342 * … … 2355 2355 * @package WordPress 2356 2356 * @subpackage Taxonomy 2357 * @since 3.6 2357 * @since 3.6.0 2358 2358 * @uses $wpdb 2359 2359 * -
trunk/src/wp-includes/theme.php
r26594 r26868 1560 1560 * Gets the theme support arguments passed when registering that support 1561 1561 * 1562 * @since 3.1 1562 * @since 3.1.0 1563 * 1563 1564 * @param string $feature the feature to check 1564 1565 * @return array The array of extra arguments -
trunk/src/wp-includes/widgets.php
r25580 r26868 20 20 * @package WordPress 21 21 * @subpackage Widgets 22 * @since 2.8 22 * @since 2.8.0 23 23 */ 24 24 class WP_Widget { … … 312 312 * @package WordPress 313 313 * @subpackage Widgets 314 * @since 2.8 314 * @since 2.8.0 315 315 */ 316 316 class WP_Widget_Factory { … … 979 979 * Whether a sidebar is in use. 980 980 * 981 * @since 2.8 981 * @since 2.8.0 982 982 * 983 983 * @param mixed $index Sidebar name, id or number to check. … … 1125 1125 * Output an arbitrary widget as a template tag 1126 1126 * 1127 * @since 2.8 1127 * @since 2.8.0 1128 1128 * 1129 1129 * @param string $widget the widget's PHP class name (see default-widgets.php)
Note: See TracChangeset
for help on using the changeset viewer.