Changeset 25991
- Timestamp:
- 10/30/2013 03:19:16 AM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-advanced.php
r25953 r25991 558 558 * Fires after 'normal' context meta boxes have been output for the 'page' post type. 559 559 * 560 * @since 1.5. 2560 * @since 1.5.0 561 561 * 562 562 * @param WP_Post $post Post object. … … 568 568 * Fires after 'normal' context meta boxes have been output for all post types other than 'page'. 569 569 * 570 * @since 1.5. 2570 * @since 1.5.0 571 571 * 572 572 * @param WP_Post $post Post object. -
trunk/src/wp-admin/includes/misc.php
r25796 r25991 248 248 * Shorten an URL, to be used as link text 249 249 * 250 * @since 1.2. 1250 * @since 1.2.0 251 251 * 252 252 * @param string $url -
trunk/src/wp-includes/class-wp.php
r25946 r25991 253 253 * to work, or any other custom query variables you want to be publicly available. 254 254 * 255 * @since 1.5. 2255 * @since 1.5.0 256 256 * 257 257 * @param array $public_query_vars The array of whitelisted query variables. … … 472 472 * Filter the query string before parsing. 473 473 * 474 * @since 1.5. 2474 * @since 1.5.0 475 475 * @deprecated 2.1.0 Use 'query_vars' or 'request' filters instead. 476 476 * -
trunk/src/wp-includes/comment-template.php
r25588 r25991 35 35 * Filter the returned comment author name. 36 36 * 37 * @since 1.5. 237 * @since 1.5.0 38 38 * 39 39 * @param string $author The comment author's username. … … 54 54 * Filter the comment author's name for display. 55 55 * 56 * @since 1.2. 156 * @since 1.2.0 57 57 * 58 58 * @param string $author The comment author's username. … … 75 75 * Filter the comment author's returned email address. 76 76 * 77 * @since 1.5. 277 * @since 1.5.0 78 78 * 79 79 * @param string $comment->comment_author_email The comment author's email address. … … 100 100 * Filter the comment author's email for display. 101 101 * 102 * @since 1.2. 1102 * @since 1.2.0 103 103 * 104 104 * @param string $author_email The comment author's email address. … … 154 154 * harvesters do not capture your commentors' email address. 155 155 * 156 * @since 1.2. 1156 * @since 1.2.0 157 157 * 158 158 * @param string $comment->comment_author_email The comment author's email address. … … 193 193 * Filter the comment author's link for display. 194 194 * 195 * @since 1.5. 2195 * @since 1.5.0 196 196 * 197 197 * @param string $return The HTML-formatted comment author link. Empty for an invalid URL. … … 226 226 * Filter the comment author's returned IP address. 227 227 * 228 * @since 1.5. 2228 * @since 1.5.0 229 229 * 230 230 * @param string $comment->comment_author_IP The comment author's IP address. … … 256 256 $url = ('http://' == $comment->comment_author_url) ? '' : $comment->comment_author_url; 257 257 $url = esc_url( $url, array('http', 'https') ); 258 return apply_filters('get_comment_author_url', $url); 258 /** 259 * Filter the comment author's URL. 260 * 261 * @since 1.5.0 262 * 263 * @param string $url The comment author's URL. 264 */ 265 return apply_filters( 'get_comment_author_url', $url ); 259 266 } 260 267 … … 271 278 * Filter the comment author's URL for display. 272 279 * 273 * @since 1.2. 1280 * @since 1.2.0 274 281 * 275 282 * @param string $author_url The comment author's URL. … … 307 314 * Filter the comment author's returned URL link. 308 315 * 309 * @since 1.5. 2316 * @since 1.5.0 310 317 * 311 318 * @param string $return The HTML-formatted comment author URL link. … … 446 453 * Filter the returned comment date. 447 454 * 448 * @since 1.5. 2455 * @since 1.5.0 449 456 * 450 457 * @param string|int $date Formatted date string or Unix timestamp. … … 509 516 * Filter the comment excerpt for display. 510 517 * 511 * @since 1.2. 1518 * @since 1.2.0 512 519 * 513 520 * @param string $comment_excerpt The comment excerpt text. … … 528 535 * Filter the returned comment ID. 529 536 * 530 * @since 1.5. 2537 * @since 1.5.0 531 538 * 532 539 * @param int $comment->comment_ID The current comment ID. … … 661 668 * Filter the returned comment count for a post. 662 669 * 663 * @since 1.5. 2670 * @since 1.5.0 664 671 * 665 672 * @param int $count The number of comments a post has. … … 695 702 * Filter the comments count for display. 696 703 * 697 * @since 1.5. 2704 * @since 1.5.0 698 705 * 699 706 * @param string $output A translatable string formatted based on whether the count is equal to 0, 1, or 1+. @see _n() … … 718 725 * Filter the text of a comment. 719 726 * 720 * @since 1.5. 2727 * @since 1.5.0 721 728 * 722 729 * @param string $comment->comment_content The text of the comment. … … 744 751 * Filter the text of a comment to be displayed. 745 752 * 746 * @since 1.2. 1753 * @since 1.2.0 747 754 * 748 755 * @param string $comment_text The text of the current comment. … … 774 781 * Filter the returned comment time. 775 782 * 776 * @since 1.5. 2783 * @since 1.5.0 777 784 * 778 785 * @param string|int $date The comment time, formatted as a date string or Unix timestamp. … … 811 818 * Filter the returned comment type. 812 819 * 813 * @since 1.5. 2820 * @since 1.5.0 814 821 * 815 822 * @param string $comment->comment_type The type of comment, such as 'comment', 'pingback', or 'trackback'. … … 1082 1089 * Filter the path to the theme template file used for the comments template. 1083 1090 * 1084 * @since 1.5. 21091 * @since 1.5.1 1085 1092 * 1086 1093 * @param string $theme_template The path to the theme template file. … … 2102 2109 * Fires at the bottom of the comment form, inside the closing </form> tag. 2103 2110 * 2104 * @since 1.5. 22111 * @since 1.5.0 2105 2112 * 2106 2113 * @param int $post_id The post ID. -
trunk/src/wp-includes/l10n.php
r25986 r25991 31 31 * Filter WordPress install's locale ID. 32 32 * 33 * @since 1.5. 233 * @since 1.5.0 34 34 * 35 35 * @param string $locale The locale ID. -
trunk/src/wp-includes/ms-load.php
r25880 r25991 67 67 * blog-suspended.php drop-ins. 68 68 * 69 * @since 3.0.0 70 * 69 71 * @return bool|string Returns true on success, or drop-in file to include. 70 72 */ … … 77 79 * Filter checking the status of the current blog. 78 80 * 79 * @since 1.2.181 * @since 3.0.0 80 82 * 81 83 * @param bool null Whether to skip the blog status check. Default null. -
trunk/src/wp-includes/template-loader.php
r25702 r25991 8 8 * Fires before determining which template to load. 9 9 * 10 * @since 1.5. 210 * @since 1.5.0 11 11 */ 12 12 do_action( 'template_redirect' ); -
trunk/src/wp-includes/template.php
r25703 r25991 35 35 * to various types of files loaded as part of the Template Hierarchy. 36 36 * 37 * @since 1.5. 237 * @since 1.5.0 38 38 * 39 39 * @param string $template Path to the template. @see locate_template() -
trunk/src/wp-login.php
r25880 r25991 300 300 * Fires before a new password is retrieved. 301 301 * 302 * @since 1.5. 2303 * @deprecated 1.5. 2Misspelled. Use 'retrieve_password' hook instead.302 * @since 1.5.0 303 * @deprecated 1.5.1 Misspelled. Use 'retrieve_password' hook instead. 304 304 * 305 305 * @param string $user_login The user login name. … … 309 309 * Fires before a new password is retrieved. 310 310 * 311 * @since 1.5. 2311 * @since 1.5.1 312 312 * 313 313 * @param string $user_login The user login name. … … 509 509 * Fires before the lost password form. 510 510 * 511 * @since 1.5. 2511 * @since 1.5.1 512 512 */ 513 513 do_action( 'lost_password' ); … … 543 543 * Filter the registration URL below the login form. 544 544 * 545 * @since 1.5. 2545 * @since 1.5.0 546 546 * 547 547 * @param string $registration_url Registration URL. -
trunk/src/wp-settings.php
r25721 r25991 220 220 * Pluggable functions are also available at this point in the loading order. 221 221 * 222 * @since 1.5. 2222 * @since 1.5.0 223 223 */ 224 224 do_action( 'plugins_loaded' ); … … 336 336 * If you wish to plug an action once WP is loaded, use the wp_loaded hook below. 337 337 * 338 * @since 1.5. 2338 * @since 1.5.0 339 339 */ 340 340 do_action( 'init' );
Note: See TracChangeset
for help on using the changeset viewer.