Changeset 25273
- Timestamp:
- 09/06/2013 01:37:59 AM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-footer.php
r25252 r25273 28 28 <?php 29 29 /** 30 * Filter the "Thank you" text displayed in the admin footer 30 * Filter the "Thank you" text displayed in the admin footer. 31 31 * 32 32 * @since 2.8.0 … … 39 39 <?php 40 40 /** 41 * Filter the version/update text displayed in the admin footer 41 * Filter the version/update text displayed in the admin footer. 42 42 * 43 43 * @see core_update_footer() WordPress prints the current version and update information, … … 54 54 <?php 55 55 /** 56 * Print scripts or data before the default footer scripts 56 * Print scripts or data before the default footer scripts. 57 57 * 58 58 * @since 2.5.0 … … 62 62 63 63 /** 64 * Prints any scripts and data queued for the footer 64 * Prints any scripts and data queued for the footer. 65 65 * 66 66 * @since 2.8.0 … … 69 69 70 70 /** 71 * Print scripts or data after the default footer scripts 71 * Print scripts or data after the default footer scripts. 72 72 * 73 * @since unknown73 * @since 2.8.0 74 74 * 75 * @param type$GLOBALS['hook_suffix'] The current admin page.75 * @param string $GLOBALS['hook_suffix'] The current admin page. 76 76 */ 77 77 do_action("admin_footer-" . $GLOBALS['hook_suffix']); -
trunk/src/wp-admin/index.php
r25250 r25273 123 123 <?php 124 124 /** 125 * Add content to the welcome panel on the admin dashboard 125 * Add content to the welcome panel on the admin dashboard. 126 126 * 127 127 * To remove the default welcome panel, use remove_action(): -
trunk/src/wp-comments-post.php
r25251 r25273 24 24 if ( empty( $post->comment_status ) ) { 25 25 /** 26 * Fires when a comment is attempted on a post that does not exist 26 * Fires when a comment is attempted on a post that does not exist. 27 27 * 28 28 * @since unknown … … 40 40 if ( ! comments_open( $comment_post_ID ) ) { 41 41 /** 42 * Fires when a comment is attempted on a post that has comments closed 42 * Fires when a comment is attempted on a post that has comments closed. 43 43 * 44 44 * @since unknown … … 49 49 } elseif ( 'trash' == $status ) { 50 50 /** 51 * Fires when a comment is attempted on a trashed post 51 * Fires when a comment is attempted on a trashed post. 52 52 * 53 53 * @since 2.9.0 … … 58 58 } elseif ( ! $status_obj->public && ! $status_obj->private ) { 59 59 /** 60 * Fires when a comment is attempted on a post in draft mode 60 * Fires when a comment is attempted on a post in draft mode. 61 61 * 62 62 * @since unknown … … 67 67 } elseif ( post_password_required( $comment_post_ID ) ) { 68 68 /** 69 * Fires when a comment is attempted on a password-protected post 69 * Fires when a comment is attempted on a password-protected post. 70 70 * 71 71 * @since unknown … … 76 76 } else { 77 77 /** 78 * Fires before a comment is posted 78 * Fires before a comment is posted. 79 79 * 80 80 * @since unknown … … 130 130 131 131 /** 132 * Perform other actions when comment cookies are set 132 * Perform other actions when comment cookies are set. 133 133 * 134 134 * @since 3.4.0 … … 142 142 143 143 /** 144 * The location URI to send commenter after posting 144 * The location URI to send commenter after posting. 145 145 * 146 146 * @since unknown -
trunk/src/wp-includes/pluggable.php
r25230 r25273 866 866 867 867 /** 868 * Filter the redirect location 868 * Filter the redirect location. 869 869 * 870 870 * @since 2.1.0 … … 876 876 877 877 /** 878 * Filter the redirect status code 878 * Filter the redirect status code. 879 879 * 880 880 * @since 2.3.0 -
trunk/src/wp-trackback.php
r25253 r25273 108 108 109 109 /** 110 * Fires after a trackback is added to a post 110 * Fires after a trackback is added to a post. 111 111 * 112 112 * @since 1.2.0
Note: See TracChangeset
for help on using the changeset viewer.