Ticket #26713: 26713.3.diff
File 26713.3.diff, 46.2 KB (added by , 11 years ago) |
---|
-
src/wp-activate.php
27 27 /** 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' ); 33 33 … … 40 40 /** 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' ); 46 46 } -
src/wp-admin/custom-header.php
177 177 /** 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() { 183 183 $step = $this->step(); -
src/wp-admin/includes/ajax-actions.php
259 259 * 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 265 265 * @return die -
src/wp-admin/includes/class-ftp-pure.php
3 3 * PemFTP - A Ftp implementation in pure PHP 4 4 * 5 5 * @package PemFTP 6 * @since 2.5 6 * @since 2.5.0 7 7 * 8 8 * @version 1.0 9 9 * @copyright Alexey Dotsenko … … 17 17 * 18 18 * @package PemFTP 19 19 * @subpackage Pure 20 * @since 2.5 20 * @since 2.5.0 21 21 * 22 22 * @version 1.0 23 23 * @copyright Alexey Dotsenko -
src/wp-admin/includes/class-ftp-sockets.php
3 3 * PemFTP - A Ftp implementation in pure PHP 4 4 * 5 5 * @package PemFTP 6 * @since 2.5 6 * @since 2.5.0 7 7 * 8 8 * @version 1.0 9 9 * @copyright Alexey Dotsenko … … 17 17 * 18 18 * @package PemFTP 19 19 * @subpackage Socket 20 * @since 2.5 20 * @since 2.5.0 21 21 * 22 22 * @version 1.0 23 23 * @copyright Alexey Dotsenko -
src/wp-admin/includes/class-wp-theme-install-list-table.php
358 358 /** 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 * 364 364 * @uses $tab Global; current tab within Themes->Install screen … … 372 372 /** 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 * 378 378 * @param object $theme - A WordPress.org Theme API object. -
src/wp-admin/includes/file.php
191 191 * Handle PHP uploads in WordPress, sanitizing file names, checking extensions for mime type, 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 197 197 * @uses apply_filters -
src/wp-admin/includes/misc.php
346 346 /** 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() { 352 352 … … 648 648 /** 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 ) { 654 654 $checked = array(); … … 679 679 /** 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 ) { 685 685 if ( array_key_exists( 'wp-refresh-post-lock', $data ) ) { … … 718 718 /** 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 ) { 724 724 if ( array_key_exists( 'wp-refresh-post-nonces', $data ) ) { -
src/wp-admin/includes/plugin.php
1412 1412 * 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) 1418 1418 * @param bool $echo Whether or not to echo the url - default is true -
src/wp-admin/includes/template.php
1949 1949 /** 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 */ 1955 1955 function _local_storage_notice() { -
src/wp-admin/includes/user.php
9 9 /** 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. 15 15 */ … … 22 22 * 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. 28 28 * @return int user id of the updated user … … 193 193 * only editors or authors. This filter allows admins to delegate 194 194 * user management. 195 195 * 196 * @since 2.8 196 * @since 2.8.0 197 197 * 198 198 * @return unknown 199 199 */ -
src/wp-admin/js/theme-install.js
129 129 /** 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 135 135 * @uses list_args … … 147 147 /** 148 148 * Initializer 149 149 * 150 * @since 3.4 150 * @since 3.4.0 151 151 * @access private 152 152 */ 153 153 init: function() { … … 187 187 * Checks to see if user has scrolled to bottom of page. 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 */ 193 193 poll: function() { … … 204 204 /** 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 * 210 210 * @param results Array with results from this.ajax() query. … … 227 227 /** 228 228 * Queries next page of themes 229 229 * 230 * @since 3.4 230 * @since 3.4.0 231 231 * @access private 232 232 */ 233 233 ajax: function() { -
src/wp-admin/update-core.php
133 133 /** 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 139 139 */ … … 353 353 /** 354 354 * Upgrade WordPress core display. 355 355 * 356 * @since 2.7 356 * @since 2.7.0 357 357 * 358 358 * @return null 359 359 */ -
src/wp-includes/atomlib.php
7 7 * 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 13 13 /** -
src/wp-includes/author-template.php
13 13 /** 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. 19 20 * … … 68 69 /** 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. 74 76 * @uses get_userdata() Retrieves the author's DB object. … … 93 95 /** 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(). 99 102 */ … … 184 187 * author's name. 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 */ 190 195 function the_author_link() { … … 194 199 /** 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() 200 206 * @return int The number of posts by the author. -
src/wp-includes/cache.php
163 163 /** 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() 169 170 * … … 256 257 * 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 { 262 263 -
src/wp-includes/canonical.php
467 467 * Removes arguments from a query string if they are not present in a URL 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 * 473 473 * @return string The altered query string -
src/wp-includes/category-template.php
1042 1042 /** 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. 1048 1048 * @return string Tag description, available. … … 1054 1054 /** 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. 1060 1060 * @param string $taxonomy Optional taxonomy name. Defaults to 'post_tag'. -
src/wp-includes/class-IXR.php
30 30 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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) 36 36 * @version 1.7.4 7th September 2010 … … 43 43 * IXR_Value 44 44 * 45 45 * @package IXR 46 * @since 1.5 46 * @since 1.5.0 47 47 */ 48 48 class IXR_Value { 49 49 var $data; … … 171 171 * IXR_MESSAGE 172 172 * 173 173 * @package IXR 174 * @since 1.5 174 * @since 1.5.0 175 175 * 176 176 */ 177 177 class IXR_Message … … 344 344 * IXR_Server 345 345 * 346 346 * @package IXR 347 * @since 1.5 347 * @since 1.5.0 348 348 */ 349 349 class IXR_Server 350 350 { … … 555 555 * IXR_Request 556 556 * 557 557 * @package IXR 558 * @since 1.5 558 * @since 1.5.0 559 559 */ 560 560 class IXR_Request 561 561 { … … 598 598 * IXR_Client 599 599 * 600 600 * @package IXR 601 * @since 1.5 601 * @since 1.5.0 602 602 * 603 603 */ 604 604 class IXR_Client … … 750 750 * IXR_Error 751 751 * 752 752 * @package IXR 753 * @since 1.5 753 * @since 1.5.0 754 754 */ 755 755 class IXR_Error 756 756 { … … 792 792 * IXR_Date 793 793 * 794 794 * @package IXR 795 * @since 1.5 795 * @since 1.5.0 796 796 */ 797 797 class IXR_Date { 798 798 var $year; … … 855 855 * IXR_Base64 856 856 * 857 857 * @package IXR 858 * @since 1.5 858 * @since 1.5.0 859 859 */ 860 860 class IXR_Base64 861 861 { … … 876 876 * IXR_IntrospectionServer 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 882 882 { … … 1039 1039 * IXR_ClientMulticall 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 1045 1045 { -
src/wp-includes/class-http.php
1395 1395 * 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 { 1401 1401 1402 1402 /** 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 1408 1409 * … … 1415 1416 /** 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 1421 1423 * … … 1428 1430 /** 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 1434 1436 */ … … 1442 1444 /** 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 1448 1450 */ … … 1456 1458 /** 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 1462 1464 */ … … 1470 1472 /** 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 1476 1478 */ … … 1484 1486 /** 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 1490 1492 */ … … 1495 1497 /** 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 1501 1503 */ … … 1762 1764 * 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 1768 1770 */ … … 1773 1775 * 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. 1779 1781 * @param int $level Optional, default is 9. Compression level, 9 is highest. … … 1792 1794 * 1952 standard gzip decode will be attempted. If all fail, then the 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. 1798 1800 * @param int $length The optional length of the compressed data. … … 1876 1878 /** 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. 1882 1884 */ … … 1910 1912 /** 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. 1916 1918 */ … … 1921 1923 /** 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. 1927 1929 * @return bool … … 1944 1946 * ensure that the functions all exist in the PHP version and aren't 1945 1947 * disabled. 1946 1948 * 1947 * @since 2.8 1949 * @since 2.8.0 1948 1950 * 1949 1951 * @return bool 1950 1952 */ -
src/wp-includes/class-phpass.php
2 2 /** 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/ 8 8 */ … … 31 31 * @package 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 { 37 37 var $itoa64; -
src/wp-includes/class-wp-xmlrpc-server.php
3349 3349 /** 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: 3355 3355 * - blog_id -
src/wp-includes/comment-template.php
139 139 * 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. 145 145 * @param string $before Optional. The text or HTML to display before the email link. Default empty. -
src/wp-includes/default-constants.php
160 160 function wp_cookie_constants() { 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' ) ) { 166 167 $siteurl = get_site_option( 'siteurl' ); -
src/wp-includes/deprecated.php
121 121 /** 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() 128 128 * … … 194 194 /** 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() 201 201 * … … 214 214 /** 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() 221 221 * … … 234 234 /** 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() 241 241 * … … 263 263 /** 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() 270 270 * … … 283 283 /** 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() 290 290 * … … 303 303 /** 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() 310 310 * … … 323 323 /** 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() 330 330 * … … 343 343 /** 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() 350 350 * … … 363 363 /** 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() 370 370 * … … 644 644 } 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() 651 651 * … … 713 713 } 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() 720 722 * … … 789 791 /** 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() 796 798 * … … 1151 1153 /** 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() 1158 1160 * … … 1173 1175 /** 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() 1180 1182 * … … 1194 1196 /** 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() 1201 1203 * … … 1209 1211 /** 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() 1216 1218 * … … 1309 1311 /** 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() 1316 1318 * … … 1337 1339 /** 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() 1344 1346 * … … 1365 1367 /** 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() 1372 1374 * … … 1393 1395 /** 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() 1400 1402 * … … 1421 1423 /** 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() 1428 1430 * … … 1449 1451 /** 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() 1456 1458 * … … 1477 1479 /** 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() 1484 1486 * … … 1505 1507 /** 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() 1512 1514 * … … 1533 1535 /** 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() 1540 1542 * … … 1561 1563 /** 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() 1568 1570 * … … 1605 1607 /** 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() 1612 1614 * … … 1633 1635 /** 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() 1640 1642 * … … 1785 1787 * Translates $text like translate(), but assumes that the text 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 1791 1793 * @deprecated Use _x() … … 1834 1836 /** 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() 1840 1842 * @see _n_noop() -
src/wp-includes/feed.php
57 57 * 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 * 63 63 * @return string Default feed, or for example 'rss2', 'atom', etc. … … 446 446 * 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 452 452 * @return array array(type, value) … … 484 484 * 485 485 * @package WordPress 486 486 * @subpackage Feed 487 * @since 2.5 487 * @since 2.5.0 488 488 */ 489 489 function self_link() { 490 490 $host = @parse_url(home_url()); … … 518 518 /** 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 524 524 * using SimplePie's multifeed feature. -
src/wp-includes/link-template.php
578 578 * Returns a link to the feed for all posts in a given term. A specific feed 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. 584 584 * @param string $taxonomy Optional. Taxonomy of $term_id … … 1711 1711 /** 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. 1717 1717 * @return string The posts link navigation. -
src/wp-includes/nav-menu-template.php
385 385 * Add the class property classes for the current context, if applicable. 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. 391 391 */ -
src/wp-includes/pluggable-deprecated.php
57 57 /** 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') 63 63 * … … 74 74 /** 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() 81 81 * … … 99 99 /** 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() 106 106 */ … … 120 120 * used anywhere in WordPress. Also, plugins shouldn't use it either. 121 121 * 122 122 * @since 2.0.3 123 * @deprecated 2.5 123 * @deprecated 2.5.0 124 124 * @deprecated No alternative 125 125 * 126 126 * @return bool Always returns false -
src/wp-includes/pluggable.php
506 506 * Makes sure the cookie is not expired. Verifies the hash in cookie is what is 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 512 512 * @param string $scheme Optional. The cookie scheme to use: auth, secure_auth, or logged_in … … 561 561 /** 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. 567 568 * … … 588 589 /** 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 594 595 * @param string $scheme Optional. The cookie scheme to use: auth, secure_auth, or logged_in … … 639 640 * default the cookie is kept without remembering is two days. When $remember is 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 645 646 * @param bool $remember Whether to remember the user … … 687 688 /** 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() { 693 694 do_action('clear_auth_cookie'); … … 735 736 /** 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() { 741 742 // Checks if a user is logged in, if not redirects them to the login page … … 903 904 /** 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 909 910 **/ … … 930 931 * instead. This prevents malicious redirects which redirect to another host, 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 * 936 938 * @return void Does not return anything … … 1165 1167 /** 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 * 1171 1174 * @param int $comment_id Comment ID … … 1251 1254 /** 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 1257 1260 */ … … 1272 1275 /** 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 1278 1281 * @param string $plaintext_pass Optional. The user's plaintext password … … 1309 1312 * A nonce has a lifespan of two ticks. Nonces in their second tick may be 1310 1313 * updated, e.g. by autosave. 1311 1314 * 1312 * @since 2.5 1315 * @since 2.5.0 1313 1316 * 1314 1317 * @return int 1315 1318 */ … … 1401 1404 * Salting passwords helps against tools which has stored hashed values of 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 1407 1410 * … … 1485 1488 * For integration with other applications, this function can be overwritten to 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 1491 1495 * … … 1517 1521 * For integration with other applications, this function can be overwritten to 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 1523 1528 * @uses PasswordHash::CheckPassword … … 1559 1564 /** 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 1565 1570 * @param bool $special_chars Whether to include standard special characters. Default true. … … 1638 1643 * For integration with other applications, this function can be overwritten to 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 1644 1650 * … … 1659 1665 /** 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 1665 1672 * @param string $default URL to a default image to use if no avatar is available … … 1773 1780 * 'title_right' : Default is an empty string. Change the HTML to the right of 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 1779 1787 * @uses WP_Text_Diff_Renderer_Table -
src/wp-includes/plugin.php
16 16 * 17 17 * @package WordPress 18 18 * @subpackage Plugin 19 * @since 1.5 19 * @since 1.5.0 20 20 */ 21 21 22 22 // Initialize the filter globals. … … 93 93 * 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 * 99 100 * @param string $tag The name of the filter hook. … … 275 276 * 276 277 * @package WordPress 277 278 * @subpackage Plugin 278 * @since 1.2279 279 * 280 * @since 1.2.0 281 * 280 282 * @param string $tag The filter hook to which the function to be removed is hooked. 281 283 * @param callback $function_to_remove The name of the function which should be removed. 282 284 * @param int $priority optional. The priority of the function (default: 10). … … 301 303 /** 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. 307 309 * @param int $priority The priority number to remove. … … 328 330 * 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. 334 336 */ … … 349 351 * 350 352 * @package WordPress 351 353 * @subpackage Plugin 352 * @since 1.2353 354 * 355 * @since 1.2.0 356 * 354 357 * @param string $tag The name of the action to which the $function_to_add is hooked. 355 358 * @param callback $function_to_add The name of the function you wish to be called. 356 359 * @param int $priority optional. Used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action. … … 375 378 * 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. 381 386 * … … 438 443 * 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 * 444 450 * @param string $tag The name of the action hook. … … 461 467 * 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. 467 474 * … … 516 523 * 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 * 522 530 * @param string $tag The name of the action hook. … … 539 547 * 540 548 * @package WordPress 541 549 * @subpackage Plugin 542 * @since 1.2543 550 * 551 * @since 1.2.0 552 * 544 553 * @param string $tag The action hook to which the function to be removed is hooked. 545 554 * @param callback $function_to_remove The name of the function which should be removed. 546 555 * @param int $priority optional The priority of the function (default: 10). … … 553 562 /** 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. 559 568 * @param int $priority The priority number to remove them from. … … 574 583 * 575 584 * @package WordPress 576 585 * @subpackage Plugin 577 * @since 1.5578 586 * 587 * @since 1.5.0 588 * 579 589 * @access private 580 590 * 581 591 * @param string $file The filename of plugin. … … 598 608 * Gets the filesystem directory path (with trailing slash) for the plugin __FILE__ passed in 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__) 604 614 * @return string the filesystem path of the directory that contains the plugin … … 611 621 * Gets the URL directory path (with trailing slash) for the plugin __FILE__ passed in 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__) 617 627 * @return string the URL path of the directory that contains the plugin … … 635 645 * 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. 641 651 * @param callback $function the function hooked to the 'activate_PLUGIN' action. … … 660 670 * 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. 666 676 * @param callback $function the function hooked to the 'deactivate_PLUGIN' action. … … 690 700 * should always check for the 'WP_UNINSTALL_PLUGIN' constant, before 691 701 * executing. 692 702 * 693 * @since 2.7 703 * @since 2.7.0 694 704 * 695 705 * @param string $file 696 706 * @param callback $callback The callback to run when the hook is called. Must be a static method or function. … … 722 732 * 723 733 * @package WordPress 724 734 * @subpackage Plugin 725 * @since 2.5 735 * @since 2.5.0 726 736 * @access private 727 737 * 728 738 * @uses $wp_filter Used to process all of the functions in the 'all' hook -
src/wp-includes/post-thumbnail-template.php
49 49 /** 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. 55 55 */ -
src/wp-includes/script-loader.php
714 714 * Postpones the scripts that were queued for the footer. 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() 720 720 */ … … 743 743 /** 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() { 749 749 global $wp_scripts, $concatenate_scripts; … … 799 799 * Postpones the scripts that were queued for the footer. 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() { 805 805 if ( ! did_action('wp_print_scripts') ) { … … 828 828 /** 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() { 834 834 do_action('wp_print_footer_scripts'); … … 840 840 * Allows plugins to queue scripts for the front end using wp_enqueue_script(). 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() { 846 846 do_action('wp_enqueue_scripts'); … … 849 849 /** 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() { 855 855 global $wp_styles, $concatenate_scripts, $compress_css; … … 923 923 /** 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() { 929 929 global $concatenate_scripts, $compress_scripts, $compress_css; -
src/wp-includes/shortcodes.php
29 29 * 30 30 * @package WordPress 31 31 * @subpackage Shortcodes 32 * @since 2.5 32 * @since 2.5.0 33 33 */ 34 34 35 35 /** 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 41 42 * @global array $shortcode_tags … … 84 85 * add_shortcode('baztag', 'baztag_func'); 85 86 * </code> 86 87 * 87 * @since 2.5 88 * @since 2.5.0 89 * 88 90 * @uses $shortcode_tags 89 91 * 90 92 * @param string $tag Shortcode tag to be searched in post content. … … 100 102 /** 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 * 106 109 * @param string $tag shortcode tag to remove hook for. … … 118 121 * shortcodes global by a empty array. This is actually a very efficient method 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 */ 124 128 function remove_all_shortcodes() { … … 171 175 * without any filtering. This might cause issues when plugins are disabled but 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. 177 182 * … … 203 208 * 5 - The content of a shortcode when it wraps some content. 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 * 209 215 * @return string The shortcode search regular expression … … 250 256 * Regular Expression callable for do_shortcode() for calling shortcode hook. 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 256 262 * … … 284 290 * attribute as the value in the key/value pair. This allows for easier 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 290 296 * @return array List of attributes and their value. … … 322 328 * If the $atts list has unsupported attributes, then they will be ignored and 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. 328 334 * @param array $atts User defined attributes in shortcode tag. … … 359 365 /** 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 * 365 372 * @param string $content Content to remove shortcode tags. -
src/wp-includes/taxonomy.php
2337 2337 * 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 * 2343 2343 * @param int $object_id The ID of the object to which the terms will be added. … … 2354 2354 * 2355 2355 * @package WordPress 2356 2356 * @subpackage Taxonomy 2357 * @since 3.6 2357 * @since 3.6.0 2358 2358 * @uses $wpdb 2359 2359 * 2360 2360 * @uses apply_filters() Calls 'delete_term_relationships' hook with object_id and tt_ids as parameters. -
src/wp-includes/theme.php
1559 1559 /** 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 1565 1566 */ -
src/wp-includes/widgets.php
19 19 * 20 20 * @package WordPress 21 21 * @subpackage Widgets 22 * @since 2.8 22 * @since 2.8.0 23 23 */ 24 24 class WP_Widget { 25 25 … … 311 311 * 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 { 317 317 var $widgets = array(); … … 978 978 /** 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. 984 984 * @return bool true if the sidebar is in use, false otherwise. … … 1124 1124 /** 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) 1130 1130 * @param array $instance the widget's instance settings