Changeset 37488
- Timestamp:
- 05/22/2016 06:00:23 PM (8 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 86 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-footer.php
r37279 r37488 34 34 $text = sprintf( __( 'Thank you for creating with <a href="%s">WordPress</a>.' ), __( 'https://wordpress.org/' ) ); 35 35 /** 36 * Filter the "Thank you" text displayed in the admin footer.36 * Filters the "Thank you" text displayed in the admin footer. 37 37 * 38 38 * @since 2.8.0 … … 46 46 <?php 47 47 /** 48 * Filter the version/update text displayed in the admin footer.48 * Filters the version/update text displayed in the admin footer. 49 49 * 50 50 * WordPress prints the current version and update information, -
trunk/src/wp-admin/admin-header.php
r32917 r37488 47 47 48 48 /** 49 * Filter the title tag content for an admin page.49 * Filters the title tag content for an admin page. 50 50 * 51 51 * @since 3.1.0 … … 175 175 <?php 176 176 /** 177 * Filter the CSS classes for the body tag in the admin.177 * Filters the CSS classes for the body tag in the admin. 178 178 * 179 179 * This filter differs from the {@see 'post_class'} and {@see 'body_class'} filters -
trunk/src/wp-admin/admin.php
r37431 r37488 49 49 50 50 /** 51 * Filter whether to attempt to perform the multisite DB upgrade routine.51 * Filters whether to attempt to perform the multisite DB upgrade routine. 52 52 * 53 53 * In single site, the user would be redirected to wp-admin/upgrade.php. … … 140 140 if ( current_user_can( 'manage_options' ) ) { 141 141 /** 142 * Filter the maximum memory limit available for administration screens.142 * Filters the maximum memory limit available for administration screens. 143 143 * 144 144 * This only applies to administrators, who may require more memory for tasks like updates. -
trunk/src/wp-admin/async-upload.php
r34265 r37488 106 106 107 107 /** 108 * Filter the returned ID of an uploaded attachment.108 * Filters the returned ID of an uploaded attachment. 109 109 * 110 110 * The dynamic portion of the hook name, `$type`, refers to the attachment type, -
trunk/src/wp-admin/comment.php
r37161 r37488 314 314 315 315 /** 316 * Filter the URI the user is redirected to after editing a comment in the admin.316 * Filters the URI the user is redirected to after editing a comment in the admin. 317 317 * 318 318 * @since 2.1.0 -
trunk/src/wp-admin/custom-header.php
r36658 r37488 1184 1184 $metadata = wp_generate_attachment_metadata( $attachment_id, $cropped ); 1185 1185 /** 1186 * Filter the header image attachment metadata.1186 * Filters the header image attachment metadata. 1187 1187 * 1188 1188 * @since 3.9.0 -
trunk/src/wp-admin/edit-form-advanced.php
r37159 r37488 22 22 23 23 /** 24 * Filter whether to enable the 'expand' functionality in the post editor.24 * Filters whether to enable the 'expand' functionality in the post editor. 25 25 * 26 26 * @since 4.0.0 … … 164 164 165 165 /** 166 * Filter the post updated messages.166 * Filters the post updated messages. 167 167 * 168 168 * @since 3.0.0 … … 544 544 <?php 545 545 /** 546 * Filter the title field placeholder text.546 * Filters the title field placeholder text. 547 547 * 548 548 * @since 3.1.0 -
trunk/src/wp-admin/edit-form-comment.php
r36958 r37488 144 144 <?php 145 145 /** 146 * Filter miscellaneous actions for the edit comment form sidebar.146 * Filters miscellaneous actions for the edit comment form sidebar. 147 147 * 148 148 * @since 4.3.0 -
trunk/src/wp-admin/edit-tag-form.php
r36969 r37488 128 128 <?php 129 129 /** 130 * Filter the editable slug.130 * Filters the editable slug. 131 131 * 132 132 * Note: This is a multi-use hook in that it is leveraged both for editable -
trunk/src/wp-admin/edit-tags.php
r37439 r37488 428 428 429 429 /** 430 * Filter the taxonomy parent drop-down on the Edit Term page.430 * Filters the taxonomy parent drop-down on the Edit Term page. 431 431 * 432 432 * @since 3.7.0 -
trunk/src/wp-admin/edit.php
r36302 r37488 284 284 285 285 /** 286 * Filter the bulk action updated messages.286 * Filters the bulk action updated messages. 287 287 * 288 288 * By default, custom post types use the messages for the 'post' post type. -
trunk/src/wp-admin/export.php
r36140 r37488 104 104 105 105 /** 106 * Filter the export args.106 * Filters the export args. 107 107 * 108 108 * @since 3.5.0 -
trunk/src/wp-admin/includes/ajax-actions.php
r37431 r37488 33 33 34 34 /** 35 * Filter Heartbeat AJAX response in no-privilege environments.35 * Filters Heartbeat AJAX response in no-privilege environments. 36 36 * 37 37 * @since 3.6.0 … … 45 45 46 46 /** 47 * Filter Heartbeat AJAX response when no data is passed.47 * Filters Heartbeat AJAX response when no data is passed. 48 48 * 49 49 * @since 3.6.0 … … 133 133 134 134 /** 135 * Filter the minimum number of characters required to fire a tag search via AJAX.135 * Filters the minimum number of characters required to fire a tag search via AJAX. 136 136 * 137 137 * @since 4.0.0 … … 2277 2277 2278 2278 /** 2279 * Filter the post lock window duration.2279 * Filters the post lock window duration. 2280 2280 * 2281 2281 * @since 3.3.0 … … 2374 2374 2375 2375 /** 2376 * Filter the arguments passed to WP_Query during an AJAX2376 * Filters the arguments passed to WP_Query during an AJAX 2377 2377 * call for querying attachments. 2378 2378 * … … 2712 2712 if ( ! empty( $data ) ) { 2713 2713 /** 2714 * Filter the Heartbeat response received.2714 * Filters the Heartbeat response received. 2715 2715 * 2716 2716 * @since 3.6.0 … … 2724 2724 2725 2725 /** 2726 * Filter the Heartbeat response sent.2726 * Filters the Heartbeat response sent. 2727 2727 * 2728 2728 * @since 3.6.0 … … 3274 3274 3275 3275 /** 3276 * Filter the cropped image attachment metadata.3276 * Filters the cropped image attachment metadata. 3277 3277 * 3278 3278 * @since 4.3.0 … … 3286 3286 3287 3287 /** 3288 * Filter the attachment ID for a cropped image.3288 * Filters the attachment ID for a cropped image. 3289 3289 * 3290 3290 * @since 4.3.0 -
trunk/src/wp-admin/includes/class-bulk-plugin-upgrader-skin.php
r37432 r37488 52 52 53 53 /** 54 * Filter the list of action links available following bulk plugin updates.54 * Filters the list of action links available following bulk plugin updates. 55 55 * 56 56 * @since 3.0.0 -
trunk/src/wp-admin/includes/class-bulk-theme-upgrader-skin.php
r37432 r37488 52 52 53 53 /** 54 * Filter the list of action links available following bulk theme updates.54 * Filters the list of action links available following bulk theme updates. 55 55 * 56 56 * @since 3.0.0 -
trunk/src/wp-admin/includes/class-core-upgrader.php
r37432 r37488 292 292 293 293 /** 294 * Filter whether to enable automatic core updates for development versions.294 * Filters whether to enable automatic core updates for development versions. 295 295 * 296 296 * @since 3.7.0 … … 308 308 309 309 /** 310 * Filter whether to enable minor automatic core updates.310 * Filters whether to enable minor automatic core updates. 311 311 * 312 312 * @since 3.7.0 … … 321 321 322 322 /** 323 * Filter whether to enable major automatic core updates.323 * Filters whether to enable major automatic core updates. 324 324 * 325 325 * @since 3.7.0 -
trunk/src/wp-admin/includes/class-language-pack-upgrader-skin.php
r37432 r37488 72 72 73 73 /** 74 * Filter the list of action links available following a translations update.74 * Filters the list of action links available following a translations update. 75 75 * 76 76 * @since 3.7.0 -
trunk/src/wp-admin/includes/class-language-pack-upgrader.php
r37432 r37488 76 76 77 77 /** 78 * Filter whether to asynchronously update translation for core, a plugin, or a theme.78 * Filters whether to asynchronously update translation for core, a plugin, or a theme. 79 79 * 80 80 * @since 4.0.0 -
trunk/src/wp-admin/includes/class-plugin-installer-skin.php
r37432 r37488 77 77 78 78 /** 79 * Filter the list of action links available following a single plugin installation.79 * Filters the list of action links available following a single plugin installation. 80 80 * 81 81 * @since 2.7.0 -
trunk/src/wp-admin/includes/class-plugin-upgrader-skin.php
r37432 r37488 55 55 56 56 /** 57 * Filter the list of action links available following a single plugin update.57 * Filters the list of action links available following a single plugin update. 58 58 * 59 59 * @since 2.7.0 -
trunk/src/wp-admin/includes/class-theme-installer-skin.php
r37432 r37488 81 81 82 82 /** 83 * Filter the list of action links available following a single theme installation.83 * Filters the list of action links available following a single theme installation. 84 84 * 85 85 * @since 2.8.0 -
trunk/src/wp-admin/includes/class-theme-upgrader-skin.php
r37432 r37488 67 67 68 68 /** 69 * Filter the list of action links available following a single theme update.69 * Filters the list of action links available following a single theme update. 70 70 * 71 71 * @since 2.8.0 -
trunk/src/wp-admin/includes/class-wp-automatic-upgrader.php
r37432 r37488 42 42 43 43 /** 44 * Filter whether to entirely disable background updates.44 * Filters whether to entirely disable background updates. 45 45 * 46 46 * There are more fine-grained filters and controls for selective disabling. … … 105 105 106 106 /** 107 * Filter whether the automatic updater should consider a filesystem107 * Filters whether the automatic updater should consider a filesystem 108 108 * location to be potentially managed by a version control system. 109 109 * … … 159 159 160 160 /** 161 * Filter whether to automatically update core, a plugin, a theme, or a language.161 * Filters whether to automatically update core, a plugin, a theme, or a language. 162 162 * 163 163 * The dynamic portion of the hook name, `$type`, refers to the type of update … … 221 221 222 222 /** 223 * Filter whether to notify the site administrator of a new core update.223 * Filters whether to notify the site administrator of a new core update. 224 224 * 225 225 * By default, administrators are notified when the update offer received … … 461 461 462 462 /** 463 * Filter whether to send a debugging email for each automatic background update.463 * Filters whether to send a debugging email for each automatic background update. 464 464 * 465 465 * @since 3.7.0 … … 606 606 607 607 /** 608 * Filter whether to send an email following an automatic background core update.608 * Filters whether to send an email following an automatic background core update. 609 609 * 610 610 * @since 3.7.0 … … 756 756 757 757 /** 758 * Filter the email sent following an automatic background core update.758 * Filters the email sent following an automatic background core update. 759 759 * 760 760 * @since 3.7.0 … … 909 909 910 910 /** 911 * Filter the debug email that can be sent following an automatic911 * Filters the debug email that can be sent following an automatic 912 912 * background core update. 913 913 * -
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r36521 r37488 167 167 $comments_per_page = $this->get_items_per_page( 'edit_comments_per_page' ); 168 168 /** 169 * Filter the number of comments listed per page in the comments list table.169 * Filters the number of comments listed per page in the comments list table. 170 170 * 171 171 * @since 2.6.0 … … 271 271 272 272 /** 273 * Filter the comment status links.273 * Filters the comment status links. 274 274 * 275 275 * @since 2.5.0 … … 331 331 <?php 332 332 /** 333 * Filter the comment types dropdown menu.333 * Filters the comment types dropdown menu. 334 334 * 335 335 * @since 2.7.0 -
trunk/src/wp-admin/includes/class-wp-list-table.php
r37431 r37488 389 389 $views = $this->get_views(); 390 390 /** 391 * Filter the list of available list table views.391 * Filters the list of available list table views. 392 392 * 393 393 * The dynamic portion of the hook name, `$this->screen->id`, refers … … 439 439 $no_new_actions = $this->_actions = $this->get_bulk_actions(); 440 440 /** 441 * Filter the list table Bulk Actions drop-down.441 * Filters the list table Bulk Actions drop-down. 442 442 * 443 443 * The dynamic portion of the hook name, `$this->screen->id`, refers … … 542 542 543 543 /** 544 * Filter whether to remove the 'Months' drop-down from the post list table.544 * Filters whether to remove the 'Months' drop-down from the post list table. 545 545 * 546 546 * @since 4.2.0 … … 569 569 570 570 /** 571 * Filter the 'Months' drop-down results.571 * Filters the 'Months' drop-down results. 572 572 * 573 573 * @since 3.7.0 … … 722 722 723 723 /** 724 * Filter the number of items to be displayed on each page of the list table.724 * Filters the number of items to be displayed on each page of the list table. 725 725 * 726 726 * The dynamic hook name, $option, refers to the `per_page` option depending … … 952 952 953 953 /** 954 * Filter the name of the primary column for the current list table.954 * Filters the name of the primary column for the current list table. 955 955 * 956 956 * @since 4.3.0 … … 994 994 $sortable_columns = $this->get_sortable_columns(); 995 995 /** 996 * Filter the list table sortable columns for a specific screen.996 * Filters the list table sortable columns for a specific screen. 997 997 * 998 998 * The dynamic portion of the hook name, `$this->screen->id`, refers -
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r36887 r37488 283 283 284 284 /** 285 * Filter the taxonomy columns for attachments in the Media list table.285 * Filters the taxonomy columns for attachments in the Media list table. 286 286 * 287 287 * @since 3.5.0 … … 313 313 $posts_columns['date'] = _x( 'Date', 'column name' ); 314 314 /** 315 * Filter the Media list table columns.315 * Filters the Media list table columns. 316 316 * 317 317 * @since 2.5.0 … … 746 746 747 747 /** 748 * Filter the action links for each attachment in the Media list table.748 * Filters the action links for each attachment in the Media list table. 749 749 * 750 750 * @since 2.8.0 -
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r36663 r37488 225 225 226 226 /** 227 * Filter the displayed site columns in Sites list table.227 * Filters the displayed site columns in Sites list table. 228 228 * 229 229 * @since MU … … 532 532 533 533 /** 534 * Filter the action links displayed for each site in the Sites list table.534 * Filters the action links displayed for each site in the Sites list table. 535 535 * 536 536 * The 'Edit', 'Dashboard', 'Delete', and 'Visit' links are displayed by -
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r36394 r37488 92 92 $themes = array( 93 93 /** 94 * Filter the full array of WP_Theme objects to list in the Multisite94 * Filters the full array of WP_Theme objects to list in the Multisite 95 95 * themes list table. 96 96 * … … 478 478 } 479 479 /** 480 * Filter the action links displayed for each theme in the Multisite480 * Filters the action links displayed for each theme in the Multisite 481 481 * themes list table. 482 482 * … … 502 502 503 503 /** 504 * Filter the action links of a specific theme in the Multisite themes504 * Filters the action links of a specific theme in the Multisite themes 505 505 * list table. 506 506 * … … 570 570 } 571 571 /** 572 * Filter the array of row meta for each theme in the Multisite themes572 * Filters the array of row meta for each theme in the Multisite themes 573 573 * list table. 574 574 * -
trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php
r36572 r37488 173 173 ); 174 174 /** 175 * Filter the columns displayed in the Network Admin Users list table.175 * Filters the columns displayed in the Network Admin Users list table. 176 176 * 177 177 * @since MU … … 352 352 353 353 /** 354 * Filter the action links displayed next the sites a user belongs to354 * Filters the action links displayed next the sites a user belongs to 355 355 * in the Network Admin Users list table. 356 356 * … … 447 447 448 448 /** 449 * Filter the action links displayed under each user in the Network Admin Users list table.449 * Filters the action links displayed under each user in the Network Admin Users list table. 450 450 * 451 451 * @since 3.2.0 -
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r37145 r37488 105 105 106 106 /** 107 * Filter the tabs shown on the Plugin Install screen.107 * Filters the tabs shown on the Plugin Install screen. 108 108 * 109 109 * @since 2.7.0 … … 115 115 116 116 /** 117 * Filter tabs not associated with a menu item on the Plugin Install screen.117 * Filters tabs not associated with a menu item on the Plugin Install screen. 118 118 * 119 119 * @since 2.7.0 … … 192 192 193 193 /** 194 * Filter API request arguments for each Plugin Install screen tab.194 * Filters API request arguments for each Plugin Install screen tab. 195 195 * 196 196 * The dynamic portion of the hook name, `$tab`, refers to the plugin install tabs. … … 495 495 496 496 /** 497 * Filter the install action links for a plugin.497 * Filters the install action links for a plugin. 498 498 * 499 499 * @since 2.7.0 -
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r36964 r37488 79 79 80 80 /** 81 * Filters the full array of plugins to list in the Plugins list table.81 * Filterss the full array of plugins to list in the Plugins list table. 82 82 * 83 83 * @since 3.0.0 … … 105 105 106 106 /** 107 * Filter whether to display the advanced plugins list table.107 * Filters whether to display the advanced plugins list table. 108 108 * 109 109 * There are two types of advanced plugins - must-use and drop-ins - … … 141 141 $show = current_user_can( 'manage_network_plugins' ); 142 142 /** 143 * Filter whether to display network-active plugins alongside plugins active for the current site.143 * Filters whether to display network-active plugins alongside plugins active for the current site. 144 144 * 145 145 * This also controls the display of inactive network-only plugins (plugins with … … 608 608 609 609 /** 610 * Filter the action links displayed for each plugin in the Network Admin Plugins list table.610 * Filters the action links displayed for each plugin in the Network Admin Plugins list table. 611 611 * 612 612 * The default action links for the Network plugins list table include … … 626 626 627 627 /** 628 * Filter the list of action links displayed for a specific plugin in the Network Admin Plugins list table.628 * Filters the list of action links displayed for a specific plugin in the Network Admin Plugins list table. 629 629 * 630 630 * The dynamic portion of the hook name, $plugin_file, refers to the path … … 646 646 647 647 /** 648 * Filter the action links displayed for each plugin in the Plugins list table.648 * Filters the action links displayed for each plugin in the Plugins list table. 649 649 * 650 650 * The default action links for the site plugins list table include … … 665 665 666 666 /** 667 * Filter the list of action links displayed for a specific plugin in the Plugins list table.667 * Filters the list of action links displayed for a specific plugin in the Plugins list table. 668 668 * 669 669 * The dynamic portion of the hook name, $plugin_file, refers to the path … … 758 758 759 759 /** 760 * Filter the array of row meta for each plugin in the Plugins list table.760 * Filters the array of row meta for each plugin in the Plugins list table. 761 761 * 762 762 * @since 2.8.0 -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r37422 r37488 516 516 517 517 /** 518 * Filter the taxonomy columns in the Posts list table.518 * Filters the taxonomy columns in the Posts list table. 519 519 * 520 520 * The dynamic portion of the hook name, `$post_type`, refers to the post … … 549 549 550 550 /** 551 * Filter the columns displayed in the Pages list table.551 * Filters the columns displayed in the Pages list table. 552 552 * 553 553 * @since 2.5.0 … … 559 559 560 560 /** 561 * Filter the columns displayed in the Posts list table.561 * Filters the columns displayed in the Posts list table. 562 562 * 563 563 * @since 1.5.0 … … 570 570 571 571 /** 572 * Filter the columns displayed in the Posts list table for a specific post type.572 * Filters the columns displayed in the Posts list table for a specific post type. 573 573 * 574 574 * The dynamic portion of the hook name, `$post_type`, refers to the post type slug. … … 965 965 if ( 'excerpt' === $mode ) { 966 966 /** 967 * Filter the published time of the post.967 * Filters the published time of the post. 968 968 * 969 969 * If `$mode` equals 'excerpt', the published time and date are both displayed. … … 1252 1252 1253 1253 /** 1254 * Filter the array of row action links on the Pages list table.1254 * Filters the array of row action links on the Pages list table. 1255 1255 * 1256 1256 * The filter is evaluated only for hierarchical post types. … … 1267 1267 1268 1268 /** 1269 * Filter the array of row action links on the Posts list table.1269 * Filters the array of row action links on the Posts list table. 1270 1270 * 1271 1271 * The filter is evaluated only for non-hierarchical post types. … … 1309 1309 1310 1310 /** 1311 * Filter whether the current taxonomy should be shown in the Quick Edit panel.1311 * Filters whether the current taxonomy should be shown in the Quick Edit panel. 1312 1312 * 1313 1313 * @since 4.2.0 … … 1474 1474 1475 1475 /** 1476 * Filter the arguments used to generate the Quick Edit page-parent drop-down.1476 * Filters the arguments used to generate the Quick Edit page-parent drop-down. 1477 1477 * 1478 1478 * @since 2.7.0 -
trunk/src/wp-admin/includes/class-wp-press-this.php
r37361 r37488 43 43 return array( 44 44 /** 45 * Filter whether or not Press This should redirect the user in the parent window upon save.45 * Filters whether or not Press This should redirect the user in the parent window upon save. 46 46 * 47 47 * @since 4.2.0 … … 135 135 136 136 /** 137 * Filter the post data of a Press This post before saving/updating, after137 * Filters the post data of a Press This post before saving/updating, after 138 138 * side_load_images action had run. 139 139 * … … 169 169 170 170 /** 171 * Filter the URL to redirect to when Press This saves.171 * Filters the URL to redirect to when Press This saves. 172 172 * 173 173 * @since 4.2.0 … … 691 691 692 692 /** 693 * Filter whether to enable in-source media discovery in Press This.693 * Filters whether to enable in-source media discovery in Press This. 694 694 * 695 695 * @since 4.2.0 … … 766 766 767 767 /** 768 * Filter the Press This data array.768 * Filters the Press This data array. 769 769 * 770 770 * @since 4.2.0 … … 1143 1143 1144 1144 /** 1145 * Filter the default HTML tags used in the suggested content for the editor.1145 * Filters the default HTML tags used in the suggested content for the editor. 1146 1146 * 1147 1147 * The HTML strings use printf format. After filtering the content is added at the specified places with `sprintf()`. -
trunk/src/wp-admin/includes/class-wp-screen.php
r37431 r37488 730 730 731 731 /** 732 * Filter the legacy contextual help list.732 * Filters the legacy contextual help list. 733 733 * 734 734 * @since 2.7.0 … … 744 744 745 745 /** 746 * Filter the legacy contextual help text.746 * Filters the legacy contextual help text. 747 747 * 748 748 * @since 2.7.0 … … 761 761 762 762 /** 763 * Filter the default legacy contextual help text.763 * Filters the default legacy contextual help text. 764 764 * 765 765 * @since 2.8.0 … … 850 850 851 851 /** 852 * Filter the array of screen layout columns.852 * Filters the array of screen layout columns. 853 853 * 854 854 * This hook provides back-compat for plugins using the back-compat 855 * filterinstead of add_screen_option().855 * Filters instead of add_screen_option(). 856 856 * 857 857 * @since 2.8.0 … … 930 930 931 931 /** 932 * Filter the screen settings text displayed in the Screen Options tab.932 * Filters the screen settings text displayed in the Screen Options tab. 933 933 * 934 934 * This filter is currently only used on the Widgets screen to enable … … 946 946 947 947 /** 948 * Filter whether to show the Screen Options tab.948 * Filters whether to show the Screen Options tab. 949 949 * 950 950 * @since 3.2.0 … … 996 996 997 997 /** 998 * Filter whether to show the Screen Options submit button.998 * Filters whether to show the Screen Options submit button. 999 999 * 1000 1000 * @since 4.4.0 … … 1205 1205 1206 1206 /** 1207 * Filter the post types that have different view mode options.1207 * Filters the post types that have different view mode options. 1208 1208 * 1209 1209 * @since 4.4.0 -
trunk/src/wp-admin/includes/class-wp-site-icon.php
r35299 r37488 122 122 123 123 /** 124 * Filter the site icon attachment metadata.124 * Filters the site icon attachment metadata. 125 125 * 126 126 * @since 4.3.0 … … 149 149 150 150 /** 151 * Filter the different dimensions that a site icon is saved in.151 * Filters the different dimensions that a site icon is saved in. 152 152 * 153 153 * @since 4.3.0 -
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r36265 r37488 80 80 if ( 'post_tag' === $this->screen->taxonomy ) { 81 81 /** 82 * Filter the number of terms displayed per page for the Tags list table.82 * Filters the number of terms displayed per page for the Tags list table. 83 83 * 84 84 * @since 2.8.0 … … 89 89 90 90 /** 91 * Filter the number of terms displayed per page for the Tags list table.91 * Filters the number of terms displayed per page for the Tags list table. 92 92 * 93 93 * @since 2.7.0 … … 99 99 } elseif ( 'category' === $this->screen->taxonomy ) { 100 100 /** 101 * Filter the number of terms displayed per page for the Categories list table.101 * Filters the number of terms displayed per page for the Categories list table. 102 102 * 103 103 * @since 2.8.0 … … 352 352 353 353 /** 354 * Filter display of the term name in the terms list table.354 * Filters display of the term name in the terms list table. 355 355 * 356 356 * The default output may include padding due to the term's … … 470 470 471 471 /** 472 * Filter the action links displayed for each term in the Tags list table.472 * Filters the action links displayed for each term in the Tags list table. 473 473 * 474 474 * @since 2.8.0 … … 482 482 483 483 /** 484 * Filter the action links displayed for each term in the terms list table.484 * Filters the action links displayed for each term in the terms list table. 485 485 * 486 486 * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. … … 560 560 public function column_default( $tag, $column_name ) { 561 561 /** 562 * Filter the displayed columns in the terms list table.562 * Filters the displayed columns in the terms list table. 563 563 * 564 564 * The dynamic portion of the hook name, `$this->screen->taxonomy`, -
trunk/src/wp-admin/includes/class-wp-theme-install-list-table.php
r36709 r37488 73 73 74 74 /** 75 * Filter tabs not associated with a menu item on the Install Themes screen.75 * Filters tabs not associated with a menu item on the Install Themes screen. 76 76 * 77 77 * @since 2.8.0 … … 125 125 126 126 /** 127 * Filter API request arguments for each Install Themes screen tab.127 * Filters API request arguments for each Install Themes screen tab. 128 128 * 129 129 * The dynamic portion of the hook name, `$tab`, refers to the theme install … … 291 291 292 292 /** 293 * Filter the install action links for a theme in the Install Themes list table.293 * Filters the install action links for a theme in the Install Themes list table. 294 294 * 295 295 * @since 3.4.0 -
trunk/src/wp-admin/includes/class-wp-upgrader.php
r37462 r37488 250 250 251 251 /** 252 * Filter whether to return the package.252 * Filters whether to return the package. 253 253 * 254 254 * @since 3.7.0 … … 450 450 451 451 /** 452 * Filter the install response before the installation has started.452 * Filters the install response before the installation has started. 453 453 * 454 454 * Returning a truthy value, or one that could be evaluated as a WP_Error … … 484 484 485 485 /** 486 * Filter the source file location for the upgrade package.486 * Filters the source file location for the upgrade package. 487 487 * 488 488 * @since 2.8.0 … … 530 530 531 531 /** 532 * Filter whether the upgrader cleared the destination.532 * Filters whether the upgrader cleared the destination. 533 533 * 534 534 * @since 2.8.0 … … 582 582 583 583 /** 584 * Filter the install response after the installation has finished.584 * Filters the install response after the installation has finished. 585 585 * 586 586 * @since 2.8.0 … … 650 650 651 651 /** 652 * Filter the package options before running an update.652 * Filters the package options before running an update. 653 653 * 654 654 * @since 4.3.0 -
trunk/src/wp-admin/includes/class-wp-users-list-table.php
r37422 r37488 126 126 127 127 /** 128 * Filter the query arguments used to retrieve users for the current users list table.128 * Filters the query arguments used to retrieve users for the current users list table. 129 129 * 130 130 * @since 4.4.0 … … 161 161 * 162 162 * Provides a list of roles and user count for that role for easy 163 * filtering of the user table.163 * Filtersing of the user table. 164 164 * 165 165 * @since 3.1.0 … … 415 415 416 416 /** 417 * Filter the action links displayed under each user in the Users list table.417 * Filters the action links displayed under each user in the Users list table. 418 418 * 419 419 * @since 2.8.0 … … 491 491 default: 492 492 /** 493 * Filter the display output of custom columns in the Users list table.493 * Filters the display output of custom columns in the Users list table. 494 494 * 495 495 * @since 2.8.0 … … 550 550 551 551 /** 552 * Filter the returned array of roles for a user.552 * Filters the returned array of roles for a user. 553 553 * 554 554 * @since 4.4.0 -
trunk/src/wp-admin/includes/comment.php
r35262 r37488 103 103 $comment->comment_content = format_to_edit( $comment->comment_content ); 104 104 /** 105 * Filter the comment content before editing.105 * Filters the comment content before editing. 106 106 * 107 107 * @since 2.0.0 -
trunk/src/wp-admin/includes/dashboard.php
r37335 r37488 66 66 67 67 /** 68 * Filter the list of widgets to load for the Network Admin dashboard.68 * Filters the list of widgets to load for the Network Admin dashboard. 69 69 * 70 70 * @since 3.1.0 … … 83 83 84 84 /** 85 * Filter the list of widgets to load for the User Admin dashboard.85 * Filters the list of widgets to load for the User Admin dashboard. 86 86 * 87 87 * @since 3.1.0 … … 100 100 101 101 /** 102 * Filter the list of widgets to load for the admin dashboard.102 * Filters the list of widgets to load for the admin dashboard. 103 103 * 104 104 * @since 2.5.0 … … 284 284 285 285 /** 286 * Filter the array of extra elements to list in the 'At a Glance'286 * Filters the array of extra elements to list in the 'At a Glance' 287 287 * dashboard widget. 288 288 * … … 309 309 310 310 /** 311 * Filter the link title attribute for the 'Search Engines Discouraged'311 * Filters the link title attribute for the 'Search Engines Discouraged' 312 312 * message displayed in the 'At a Glance' dashboard widget. 313 313 * … … 322 322 323 323 /** 324 * Filter the link label for the 'Search Engines Discouraged' message324 * Filters the link label for the 'Search Engines Discouraged' message 325 325 * displayed in the 'At a Glance' dashboard widget. 326 326 * … … 539 539 540 540 /** 541 * Filter the post query arguments for the 'Recent Drafts' dashboard widget.541 * Filters the post query arguments for the 'Recent Drafts' dashboard widget. 542 542 * 543 543 * @since 4.4.0 … … 634 634 635 635 /** 636 * Filter the action links displayed for each comment in the 'Recent Comments'636 * Filters the action links displayed for each comment in the 'Recent Comments' 637 637 * dashboard widget. 638 638 * … … 807 807 808 808 /** 809 * Filter the query arguments used for the Recent Posts widget.809 * Filters the query arguments used for the Recent Posts widget. 810 810 * 811 811 * @since 4.2.0 … … 1069 1069 1070 1070 /** 1071 * Filter the primary link URL for the 'WordPress News' dashboard widget.1071 * Filters the primary link URL for the 'WordPress News' dashboard widget. 1072 1072 * 1073 1073 * @since 2.5.0 … … 1078 1078 1079 1079 /** 1080 * Filter the primary feed URL for the 'WordPress News' dashboard widget.1080 * Filters the primary feed URL for the 'WordPress News' dashboard widget. 1081 1081 * 1082 1082 * @since 2.3.0 … … 1087 1087 1088 1088 /** 1089 * Filter the primary link title for the 'WordPress News' dashboard widget.1089 * Filters the primary link title for the 'WordPress News' dashboard widget. 1090 1090 * 1091 1091 * @since 2.3.0 … … 1102 1102 1103 1103 /** 1104 * Filter the secondary link URL for the 'WordPress News' dashboard widget.1104 * Filters the secondary link URL for the 'WordPress News' dashboard widget. 1105 1105 * 1106 1106 * @since 2.3.0 … … 1111 1111 1112 1112 /** 1113 * Filter the secondary feed URL for the 'WordPress News' dashboard widget.1113 * Filters the secondary feed URL for the 'WordPress News' dashboard widget. 1114 1114 * 1115 1115 * @since 2.3.0 … … 1120 1120 1121 1121 /** 1122 * Filter the secondary link title for the 'WordPress News' dashboard widget.1122 * Filters the secondary link title for the 'WordPress News' dashboard widget. 1123 1123 * 1124 1124 * @since 2.3.0 … … 1129 1129 1130 1130 /** 1131 * Filter the number of secondary link items for the 'WordPress News' dashboard widget.1131 * Filters the number of secondary link items for the 'WordPress News' dashboard widget. 1132 1132 * 1133 1133 * @since 4.4.0 … … 1356 1356 1357 1357 /** 1358 * Filter the notice output for the 'Browse Happy' nag meta box.1358 * Filters the notice output for the 'Browse Happy' nag meta box. 1359 1359 * 1360 1360 * @since 3.2.0 -
trunk/src/wp-admin/includes/edit-tag-messages.php
r34202 r37488 41 41 42 42 /** 43 * Filter the messages displayed when a tag is updated.43 * Filters the messages displayed when a tag is updated. 44 44 * 45 45 * @since 3.7.0 -
trunk/src/wp-admin/includes/export.php
r37240 r37488 50 50 $wp_filename = $sitename . 'wordpress.' . $date . '.xml'; 51 51 /** 52 * Filter the export filename.52 * Filters the export filename. 53 53 * 54 54 * @since 4.4.0 … … 270 270 foreach ( $termmeta as $meta ) { 271 271 /** 272 * Filter whether to selectively skip term meta used for WXR exports.272 * Filters whether to selectively skip term meta used for WXR exports. 273 273 * 274 274 * Returning a truthy value to the filter will skip the current meta … … 485 485 <content:encoded><?php 486 486 /** 487 * Filter the post content used for WXR exports.487 * Filters the post content used for WXR exports. 488 488 * 489 489 * @since 2.5.0 … … 495 495 <excerpt:encoded><?php 496 496 /** 497 * Filter the post excerpt used for WXR exports.497 * Filters the post excerpt used for WXR exports. 498 498 * 499 499 * @since 2.6.0 … … 522 522 foreach ( $postmeta as $meta ) : 523 523 /** 524 * Filter whether to selectively skip post meta used for WXR exports.524 * Filters whether to selectively skip post meta used for WXR exports. 525 525 * 526 526 * Returning a truthy value to the filter will skip the current meta … … 561 561 foreach ( $c_meta as $meta ) : 562 562 /** 563 * Filter whether to selectively skip comment meta used for WXR exports.563 * Filters whether to selectively skip comment meta used for WXR exports. 564 564 * 565 565 * Returning a truthy value to the filter will skip the current meta -
trunk/src/wp-admin/includes/file.php
r37467 r37488 252 252 253 253 /** 254 * Filter the data for a file before it is uploaded to WordPress.254 * Filters the data for a file before it is uploaded to WordPress. 255 255 * 256 256 * The dynamic portion of the hook name, `$action`, refers to the post action. … … 400 400 401 401 /** 402 * Filter the data array for the uploaded file.402 * Filters the data array for the uploaded file. 403 403 * 404 404 * @since 2.1.0 … … 590 590 591 591 /** 592 * Filter whether to use ZipArchive to unzip archives.592 * Filters whether to use ZipArchive to unzip archives. 593 593 * 594 594 * @since 3.0.0 … … 891 891 892 892 /** 893 * Filter the path for a specific filesystem method class file.893 * Filters the path for a specific filesystem method class file. 894 894 * 895 895 * @since 2.6.0 … … 1007 1007 1008 1008 /** 1009 * Filter the filesystem method to use.1009 * Filters the filesystem method to use. 1010 1010 * 1011 1011 * @since 2.6.0 … … 1052 1052 1053 1053 /** 1054 * Filter the filesystem credentials form output.1054 * Filters the filesystem credentials form output. 1055 1055 * 1056 1056 * Returning anything other than an empty string will effectively short-circuit … … 1153 1153 1154 1154 /** 1155 * Filter the connection types to output to the filesystem credentials form.1155 * Filters the connection types to output to the filesystem credentials form. 1156 1156 * 1157 1157 * @since 2.9.0 -
trunk/src/wp-admin/includes/image-edit.php
r37342 r37488 244 244 245 245 /** 246 * Filter the WP_Image_Editor instance for the image to be streamed to the browser.246 * Filters the WP_Image_Editor instance for the image to be streamed to the browser. 247 247 * 248 248 * @since 3.5.0 … … 261 261 262 262 /** 263 * Filter the GD image resource to be streamed to the browser.263 * Filters the GD image resource to be streamed to the browser. 264 264 * 265 265 * @since 2.9.0 … … 303 303 304 304 /** 305 * Filter whether to skip saving the image file.305 * Filters whether to skip saving the image file. 306 306 * 307 307 * Returning a non-null value will short-circuit the save method, … … 329 329 330 330 /** 331 * Filter whether to skip saving the image file.331 * Filters whether to skip saving the image file. 332 332 * 333 333 * Returning a non-null value will short-circuit the save method, … … 516 516 517 517 /** 518 * Filter the WP_Image_Editor instance before applying changes to the image.518 * Filters the WP_Image_Editor instance before applying changes to the image. 519 519 * 520 520 * @since 3.5.0 … … 527 527 528 528 /** 529 * Filter the GD image resource before applying changes to the image.529 * Filters the GD image resource before applying changes to the image. 530 530 * 531 531 * @since 2.9.0 -
trunk/src/wp-admin/includes/image.php
r36970 r37488 108 108 109 109 /** 110 * Filter the image sizes automatically generated when uploading an image.110 * Filters the image sizes automatically generated when uploading an image. 111 111 * 112 112 * @since 2.9.0 … … 175 175 ); 176 176 /** 177 * Filter the parameters for the attachment thumbnail creation.177 * Filters the parameters for the attachment thumbnail creation. 178 178 * 179 179 * @since 3.9.0 … … 200 200 201 201 /** 202 * Filter the generated attachment meta data.202 * Filters the generated attachment meta data. 203 203 * 204 204 * @since 2.1.0 … … 338 338 339 339 /** 340 * Filter the image types to check for exif data.340 * Filters the image types to check for exif data. 341 341 * 342 342 * @since 2.5.0 … … 418 418 419 419 /** 420 * Filter the array of meta data read from an image's exif data.420 * Filters the array of meta data read from an image's exif data. 421 421 * 422 422 * @since 2.5.0 … … 466 466 467 467 /** 468 * Filter whether the current image is displayable in the browser.468 * Filters whether the current image is displayable in the browser. 469 469 * 470 470 * @since 2.5.0 … … 507 507 if ( is_resource($image) ) { 508 508 /** 509 * Filter the current image being loaded for editing.509 * Filters the current image being loaded for editing. 510 510 * 511 511 * @since 2.9.0 … … 543 543 if ( 'full' != $size && ( $data = image_get_intermediate_size( $attachment_id, $size ) ) ) { 544 544 /** 545 * Filter the path to the current image.545 * Filters the path to the current image. 546 546 * 547 547 * The filter is evaluated for all image sizes except 'full'. … … 557 557 } elseif ( function_exists( 'fopen' ) && function_exists( 'ini_get' ) && true == ini_get( 'allow_url_fopen' ) ) { 558 558 /** 559 * Filter the image URL if not in the local filesystem.559 * Filters the image URL if not in the local filesystem. 560 560 * 561 561 * The filter is only evaluated if fopen is enabled on the server. … … 571 571 572 572 /** 573 * Filter the returned path or URL of the current image.573 * Filters the returned path or URL of the current image. 574 574 * 575 575 * @since 2.9.0 -
trunk/src/wp-admin/includes/media.php
r37484 r37488 23 23 24 24 /** 25 * Filter the available tabs in the legacy (pre-3.5.0) media popup.25 * Filters the available tabs in the legacy (pre-3.5.0) media popup. 26 26 * 27 27 * @since 2.5.0 … … 136 136 137 137 /** 138 * Filter the image HTML markup to send to the editor.138 * Filters the image HTML markup to send to the editor. 139 139 * 140 140 * @since 2.5.0 … … 173 173 174 174 /** 175 * Filter the caption text.175 * Filters the caption text. 176 176 * 177 177 * Note: If the caption text is empty, the caption shortcode will not be appended … … 179 179 * 180 180 * Passing an empty value also prevents the {@see 'image_add_caption_shortcode'} 181 * filterfrom being evaluated at the end of image_add_caption().181 * Filters from being evaluated at the end of image_add_caption(). 182 182 * 183 183 * @since 4.1.0 … … 189 189 190 190 /** 191 * Filter whether to disable captions.191 * Filters whether to disable captions. 192 192 * 193 193 * Prevents image captions from being appended to image HTML when inserted into the editor. … … 221 221 222 222 /** 223 * Filter the image HTML markup including the caption shortcode.223 * Filters the image HTML markup including the caption shortcode. 224 224 * 225 225 * @since 2.6.0 … … 569 569 ); 570 570 /** 571 * Filter the legacy (pre-3.5.0) media buttons.571 * Filters the legacy (pre-3.5.0) media buttons. 572 572 * 573 573 * @since 2.5.0 … … 609 609 610 610 /** 611 * Filter the upload iframe source URL for a specific media type.611 * Filters the upload iframe source URL for a specific media type. 612 612 * 613 613 * The dynamic portion of the hook name, `$type`, refers to the type … … 661 661 662 662 /** 663 * Filter the attachment fields to be saved.663 * Filters the attachment fields to be saved. 664 664 * 665 665 * @since 2.5.0 … … 717 717 718 718 /** 719 * Filter the HTML markup for a media item sent to the editor.719 * Filters the HTML markup for a media item sent to the editor. 720 720 * 721 721 * @since 2.5.0 … … 775 775 776 776 /** 777 * Filter the URL sent to the editor for a specific media type.777 * Filters the URL sent to the editor for a specific media type. 778 778 * 779 779 * The dynamic portion of the hook name, `$type`, refers to the type … … 798 798 799 799 /** 800 * Filter the image URL sent to the editor.800 * Filters the image URL sent to the editor. 801 801 * 802 802 * @since 2.8.0 … … 979 979 function image_size_input_fields( $post, $check = '' ) { 980 980 /** 981 * Filter the names and labels of the default image sizes.981 * Filters the names and labels of the default image sizes. 982 982 * 983 983 * @since 3.3.0 … … 1130 1130 1131 1131 /** 1132 * Filters input from media_upload_form_handler() and assigns a default1132 * Filterss input from media_upload_form_handler() and assigns a default 1133 1133 * post_title from the file name if none supplied. 1134 1134 * … … 1286 1286 1287 1287 /** 1288 * Filter the attachment fields to edit.1288 * Filters the attachment fields to edit. 1289 1289 * 1290 1290 * @since 2.5.0 … … 1370 1370 1371 1371 /** 1372 * Filter the arguments used to retrieve an image for the edit image form.1372 * Filters the arguments used to retrieve an image for the edit image form. 1373 1373 * 1374 1374 * @since 3.1.0 … … 1428 1428 1429 1429 /** 1430 * Filter the media metadata.1430 * Filters the media metadata. 1431 1431 * 1432 1432 * @since 2.5.0 … … 1846 1846 1847 1847 /** 1848 * Filter the media upload post parameters.1848 * Filters the media upload post parameters. 1849 1849 * 1850 1850 * @since 3.1.0 As 'swfupload_post_params' … … 1879 1879 1880 1880 /** 1881 * Filter the default Plupload settings.1881 * Filters the default Plupload settings. 1882 1882 * 1883 1883 * @since 3.3.0 … … 1986 1986 1987 1987 /** 1988 * Filter the media upload form action URL.1988 * Filters the media upload form action URL. 1989 1989 * 1990 1990 * @since 2.6.0 … … 2166 2166 <?php 2167 2167 /** 2168 * Filter the insert media from URL form HTML.2168 * Filters the insert media from URL form HTML. 2169 2169 * 2170 2170 * @since 3.3.0 … … 2419 2419 } 2420 2420 /** 2421 * Filter the media upload mime type list items.2421 * Filters the media upload mime type list items. 2422 2422 * 2423 2423 * Returned values should begin with an `<li>` tag. … … 2866 2866 2867 2867 /** 2868 * Filter the audio and video metadata fields to be shown in the publish meta box.2868 * Filters the audio and video metadata fields to be shown in the publish meta box. 2869 2869 * 2870 2870 * The key for each item in the array should correspond to an attachment … … 2904 2904 2905 2905 /** 2906 * Filter the audio attachment metadata fields to be shown in the publish meta box.2906 * Filters the audio attachment metadata fields to be shown in the publish meta box. 2907 2907 * 2908 2908 * The key for each item in the array should correspond to an attachment -
trunk/src/wp-admin/includes/menu.php
r35416 r37488 230 230 231 231 /** 232 * Filter administration menus array with classes added for top-level items.232 * Filters administration menus array with classes added for top-level items. 233 233 * 234 234 * @since 2.7.0 … … 242 242 243 243 /** 244 * Filter whether to enable custom ordering of the administration menu.244 * Filters whether to enable custom ordering of the administration menu. 245 245 * 246 246 * See the {@see 'menu_order'} filter for reordering menu items. … … 259 259 260 260 /** 261 * Filter the order of administration menu items.261 * Filters the order of administration menu items. 262 262 * 263 263 * A truthy value must first be passed to the {@see 'custom_menu_order'} filter -
trunk/src/wp-admin/includes/meta-boxes.php
r37016 r37488 523 523 524 524 /** 525 * Filter the arguments for the taxonomy parent dropdown on the Post Edit page.525 * Filters the arguments for the taxonomy parent dropdown on the Post Edit page. 526 526 * 527 527 * @since 4.4.0 … … 799 799 800 800 /** 801 * Filter the arguments used to generate a Pages drop-down element.801 * Filters the arguments used to generate a Pages drop-down element. 802 802 * 803 803 * @since 3.3.0 … … 836 836 <?php 837 837 /** 838 * Filter the title of the default page template displayed in the drop-down.838 * Filters the title of the default page template displayed in the drop-down. 839 839 * 840 840 * @since 4.1.0 -
trunk/src/wp-admin/includes/misc.php
r37273 r37488 18 18 19 19 /** 20 * Filter whether Apache and mod_rewrite are present.20 * Filters whether Apache and mod_rewrite are present. 21 21 * 22 22 * This filter was previously used to force URL rewriting for other servers, … … 47 47 48 48 /** 49 * Filter whether URL rewriting is available.49 * Filters whether URL rewriting is available. 50 50 * 51 51 * @since 3.7.0 … … 370 370 371 371 /** 372 * Filter the list of functions and classes to be ignored from the documentation lookup.372 * Filters the list of functions and classes to be ignored from the documentation lookup. 373 373 * 374 374 * @since 2.8.0 … … 439 439 440 440 /** 441 * Filter a screen option value before it is set.441 * Filters a screen option value before it is set. 442 442 * 443 443 * The filter can also be used to modify non-standard [items]_per_page -
trunk/src/wp-admin/includes/ms.php
r37466 r37488 113 113 $tables = $wpdb->tables( 'blog' ); 114 114 /** 115 * Filter the tables to drop when the site is deleted.115 * Filters the tables to drop when the site is deleted. 116 116 * 117 117 * @since MU … … 129 129 130 130 /** 131 * Filter the upload base directory to delete when the site is deleted.131 * Filters the upload base directory to delete when the site is deleted. 132 132 * 133 133 * @since MU … … 292 292 293 293 /** 294 * Filter the email text sent when the site admin email is changed.294 * Filters the email text sent when the site admin email is changed. 295 295 * 296 296 * The following strings have a special meaning and will get replaced dynamically: … … 372 372 373 373 /** 374 * Filter the email text sent when a user changes emails.374 * Filters the email text sent when a user changes emails. 375 375 * 376 376 * The following strings have a special meaning and will get replaced dynamically: … … 605 605 606 606 /** 607 * Filter the language codes.607 * Filters the language codes. 608 608 * 609 609 * @since MU … … 731 731 732 732 /** 733 * Filter the languages available in the dropdown.733 * Filters the languages available in the dropdown. 734 734 * 735 735 * @since MU … … 874 874 875 875 /** 876 * Filter whether this network can be edited from this page.876 * Filters whether this network can be edited from this page. 877 877 * 878 878 * @since 3.1.0 … … 1048 1048 1049 1049 /** 1050 * Filter the links that appear on site-editing network pages1050 * Filters the links that appear on site-editing network pages 1051 1051 * 1052 1052 * Default links: 'site-info', 'site-users', 'site-themes', and 'site-settings' -
trunk/src/wp-admin/includes/nav-menu.php
r37153 r37488 187 187 foreach ( $post_types as $post_type ) { 188 188 /** 189 * Filter whether a menu items meta box will be added for the current189 * Filters whether a menu items meta box will be added for the current 190 190 * object type. 191 191 * … … 401 401 402 402 /** 403 * Filter the posts displayed in the 'Most Recent' tab of the current403 * Filters the posts displayed in the 'Most Recent' tab of the current 404 404 * post type's menu items meta box. 405 405 * … … 509 509 510 510 /** 511 * Filter the posts displayed in the 'View All' tab of the current511 * Filters the posts displayed in the 'View All' tab of the current 512 512 * post type's menu items meta box. 513 513 * … … 889 889 890 890 /** 891 * Filter the Walker class used when adding nav menu items.891 * Filters the Walker class used when adding nav menu items. 892 892 * 893 893 * @since 3.0.0 -
trunk/src/wp-admin/includes/network.php
r36690 r37488 53 53 global $wpdb; 54 54 /** 55 * Filter whether to enable the subdirectory install feature in Multisite.55 * Filters whether to enable the subdirectory install feature in Multisite. 56 56 * 57 57 * @since 3.0.0 -
trunk/src/wp-admin/includes/plugin-install.php
r37221 r37488 114 114 115 115 /** 116 * Filter the WordPress.org Plugin Install API arguments.116 * Filters the WordPress.org Plugin Install API arguments. 117 117 * 118 118 * Important: An object MUST be returned to this filter. … … 126 126 127 127 /** 128 * Filter the response for the current WordPress.org Plugin Install API request.128 * Filters the response for the current WordPress.org Plugin Install API request. 129 129 * 130 130 * Passing a non-false value will effectively short-circuit the WordPress.org API request. … … 172 172 173 173 /** 174 * Filter the Plugin Install API response results.174 * Filters the Plugin Install API response results. 175 175 * 176 176 * @since 2.7.0 -
trunk/src/wp-admin/includes/post.php
r37196 r37488 623 623 624 624 /** 625 * Filter the default post content initially used in the "Write Post" form.625 * Filters the default post content initially used in the "Write Post" form. 626 626 * 627 627 * @since 1.5.0 … … 633 633 634 634 /** 635 * Filter the default post title initially used in the "Write Post" form.635 * Filters the default post title initially used in the "Write Post" form. 636 636 * 637 637 * @since 1.5.0 … … 643 643 644 644 /** 645 * Filter the default post excerpt initially used in the "Write Post" form.645 * Filters the default post excerpt initially used in the "Write Post" form. 646 646 * 647 647 * @since 1.5.0 … … 1023 1023 1024 1024 /** 1025 * Filter the number of items per page to show for a specific 'per_page' type.1025 * Filters the number of items per page to show for a specific 'per_page' type. 1026 1026 * 1027 1027 * The dynamic portion of the hook name, `$post_type`, refers to the post type. … … 1038 1038 1039 1039 /** 1040 * Filter the number of posts displayed per page when specifically listing "posts".1040 * Filters the number of posts displayed per page when specifically listing "posts". 1041 1041 * 1042 1042 * @since 2.8.0 … … 1114 1114 1115 1115 /** 1116 * Filter the number of items to list per page when listing media items.1116 * Filters the number of items to list per page when listing media items. 1117 1117 * 1118 1118 * @since 2.9.0 … … 1182 1182 1183 1183 /** 1184 * Filter the postbox classes for a specific screen and screen ID combo.1184 * Filters the postbox classes for a specific screen and screen ID combo. 1185 1185 * 1186 1186 * The dynamic portions of the hook name, `$page` and `$id`, refer to … … 1260 1260 1261 1261 /** 1262 * Filter the sample permalink.1262 * Filters the sample permalink. 1263 1263 * 1264 1264 * @since 4.4.0 … … 1348 1348 1349 1349 /** 1350 * Filter the sample permalink HTML markup.1350 * Filters the sample permalink HTML markup. 1351 1351 * 1352 1352 * @since 2.9.0 … … 1394 1394 1395 1395 /** 1396 * Filter the size used to display the post thumbnail image in the 'Featured Image' meta box.1396 * Filters the size used to display the post thumbnail image in the 'Featured Image' meta box. 1397 1397 * 1398 1398 * Note: When a theme adds 'post-thumbnail' support, a special 'post-thumbnail' … … 1427 1427 1428 1428 /** 1429 * Filter the admin post thumbnail HTML markup to return.1429 * Filters the admin post thumbnail HTML markup to return. 1430 1430 * 1431 1431 * @since 2.9.0 … … 1506 1506 1507 1507 /** 1508 * Filter whether to show the post locked dialog.1508 * Filters whether to show the post locked dialog. 1509 1509 * 1510 1510 * Returning a falsey value to the filter will short-circuit displaying the dialog. … … 1558 1558 1559 1559 /** 1560 * Filter whether to allow the post lock to be overridden.1560 * Filters whether to allow the post lock to be overridden. 1561 1561 * 1562 1562 * Returning a falsey value to the filter will disable the ability … … 1836 1836 1837 1837 /** 1838 * Filter the post redirect destination URL.1838 * Filters the post redirect destination URL. 1839 1839 * 1840 1840 * @since 2.9.0 -
trunk/src/wp-admin/includes/revision.php
r37342 r37488 81 81 82 82 /** 83 * Filter revisions text diff options.84 * 85 * Filter the options passed to wp_text_diff() when viewing a post revision.83 * Filters revisions text diff options. 84 * 85 * Filters the options passed to wp_text_diff() when viewing a post revision. 86 86 * 87 87 * @since 4.1.0 … … 120 120 121 121 /** 122 * Filter the fields displayed in the post revision diff UI.122 * Filters the fields displayed in the post revision diff UI. 123 123 * 124 124 * @since 4.1.0 … … 214 214 215 215 /** 216 * Filter the array of revisions used on the revisions screen.216 * Filters the array of revisions used on the revisions screen. 217 217 * 218 218 * @since 4.4.0 -
trunk/src/wp-admin/includes/schema.php
r36654 r37488 1029 1029 1030 1030 /** 1031 * Filter meta for a network on creation.1031 * Filters meta for a network on creation. 1032 1032 * 1033 1033 * @since 3.7.0 -
trunk/src/wp-admin/includes/screen.php
r36156 r37488 26 26 27 27 /** 28 * Filter the column headers for a list table on a specific screen.28 * Filters the column headers for a list table on a specific screen. 29 29 * 30 30 * The dynamic portion of the hook name, `$screen->id`, refers to the … … 64 64 65 65 /** 66 * Filter the default list of hidden columns.66 * Filters the default list of hidden columns. 67 67 * 68 68 * @since 4.4.0 … … 75 75 76 76 /** 77 * Filter the list of hidden columns.77 * Filters the list of hidden columns. 78 78 * 79 79 * @since 4.4.0 … … 154 154 155 155 /** 156 * Filter the default list of hidden meta boxes.156 * Filters the default list of hidden meta boxes. 157 157 * 158 158 * @since 3.1.0 … … 165 165 166 166 /** 167 * Filter the list of hidden meta boxes.167 * Filters the list of hidden meta boxes. 168 168 * 169 169 * @since 3.3.0 -
trunk/src/wp-admin/includes/taxonomy.php
r35975 r37488 260 260 261 261 /** 262 * Filter the comma-separated list of terms available to edit.262 * Filters the comma-separated list of terms available to edit. 263 263 * 264 264 * @since 2.8.0 -
trunk/src/wp-admin/includes/template.php
r37485 r37488 87 87 88 88 /** 89 * Filter the taxonomy terms checklist arguments.89 * Filters the taxonomy terms checklist arguments. 90 90 * 91 91 * @since 3.4.0 … … 355 355 global $wp_list_table; 356 356 /** 357 * Filter the in-line comment reply-to form output in the Comments357 * Filters the in-line comment reply-to form output in the Comments 358 358 * list table. 359 359 * … … 583 583 584 584 /** 585 * Filter values for the meta key dropdown in the Custom Fields meta box.585 * Filters values for the meta key dropdown in the Custom Fields meta box. 586 586 * 587 587 * Returning a non-null value will effectively short-circuit and avoid a … … 597 597 if ( null === $keys ) { 598 598 /** 599 * Filter the number of custom fields to retrieve for the drop-down599 * Filters the number of custom fields to retrieve for the drop-down 600 600 * in the Custom Fields meta box. 601 601 * … … 844 844 845 845 /** 846 * Filter the maximum allowed upload size for import files.846 * Filters the maximum allowed upload size for import files. 847 847 * 848 848 * @since 2.3.0 … … 1713 1713 1714 1714 /** 1715 * Filter the default post display states used in the posts list table.1715 * Filters the default post display states used in the posts list table. 1716 1716 * 1717 1717 * @since 2.8.0 … … 1764 1764 1765 1765 /** 1766 * Filter the default media display states for items in the Media list table.1766 * Filters the default media display states for items in the Media list table. 1767 1767 * 1768 1768 * @since 3.2.0 -
trunk/src/wp-admin/includes/theme.php
r37287 r37488 312 312 * 313 313 * It is possible for a theme to override the Themes API result with three 314 * filters. Assume this is for themes, which can extend on the Theme Info to314 * Filterss. Assume this is for themes, which can extend on the Theme Info to 315 315 * offer more choices. This is very powerful and must be used with care, when 316 316 * overriding the filters. … … 404 404 405 405 /** 406 * Filter arguments used to query for installer pages from the WordPress.org Themes API.406 * Filters arguments used to query for installer pages from the WordPress.org Themes API. 407 407 * 408 408 * Important: An object MUST be returned to this filter. … … 417 417 418 418 /** 419 * Filter whether to override the WordPress.org Themes API.419 * Filters whether to override the WordPress.org Themes API. 420 420 * 421 421 * Passing a non-false value will effectively short-circuit the WordPress.org API request. … … 463 463 464 464 /** 465 * Filter the returned WordPress.org Themes API response.465 * Filters the returned WordPress.org Themes API response. 466 466 * 467 467 * @since 2.8.0 … … 489 489 490 490 /** 491 * Filter theme data before it is prepared for JavaScript.491 * Filters theme data before it is prepared for JavaScript. 492 492 * 493 493 * Passing a non-empty array will result in wp_prepare_themes_for_js() returning … … 575 575 576 576 /** 577 * Filter the themes prepared for JavaScript, for themes.php.577 * Filters the themes prepared for JavaScript, for themes.php. 578 578 * 579 579 * Could be useful for changing the order, which is by name by default. -
trunk/src/wp-admin/includes/translation-install.php
r34828 r37488 73 73 74 74 /** 75 * Filter the Translation Install API response results.75 * Filters the Translation Install API response results. 76 76 * 77 77 * @since 4.0.0 -
trunk/src/wp-admin/includes/update-core.php
r37485 r37488 804 804 805 805 /** 806 * Filter feedback messages displayed during the core update process.806 * Filters feedback messages displayed during the core update process. 807 807 * 808 808 * The filter is first evaluated after the zip file for the latest version -
trunk/src/wp-admin/includes/update.php
r36964 r37488 259 259 260 260 /** 261 * Filter the text displayed in the 'At a Glance' dashboard widget.261 * Filters the text displayed in the 'At a Glance' dashboard widget. 262 262 * 263 263 * Prior to 3.8.0, the widget was named 'Right Now'. -
trunk/src/wp-admin/includes/upgrade.php
r36985 r37488 2048 2048 2049 2049 /** 2050 * Filters for content to remove unnecessary slashes.2050 * Filterss for content to remove unnecessary slashes. 2051 2051 * 2052 2052 * @since 1.5.0 … … 2105 2105 2106 2106 /** 2107 * Filter the dbDelta SQL queries.2107 * Filters the dbDelta SQL queries. 2108 2108 * 2109 2109 * @since 3.3.0 … … 2134 2134 2135 2135 /** 2136 * Filter the dbDelta SQL queries for creating tables and/or databases.2136 * Filters the dbDelta SQL queries for creating tables and/or databases. 2137 2137 * 2138 2138 * Queries filterable via this hook contain "CREATE TABLE" or "CREATE DATABASE". … … 2145 2145 2146 2146 /** 2147 * Filter the dbDelta SQL queries for inserting or updating.2147 * Filters the dbDelta SQL queries for inserting or updating. 2148 2148 * 2149 2149 * Queries filterable via this hook contain "INSERT INTO" or "UPDATE". … … 2783 2783 2784 2784 /** 2785 * Filter if upgrade routines should be run on global tables.2785 * Filters if upgrade routines should be run on global tables. 2786 2786 * 2787 2787 * @param bool $should_upgrade Whether to run the upgrade routines on global tables. -
trunk/src/wp-admin/includes/user.php
r37342 r37488 219 219 220 220 /** 221 * Filter the list of editable roles.221 * Filters the list of editable roles. 222 222 * 223 223 * @since 2.8.0 … … 262 262 263 263 /** 264 * Filter the user's drafts query string.264 * Filters the user's drafts query string. 265 265 * 266 266 * @since 2.0.0 … … 330 330 331 331 /** 332 * Filter the list of post types to delete with a user.332 * Filters the list of post types to delete with a user. 333 333 * 334 334 * @since 3.4.0 -
trunk/src/wp-admin/maint/repair.php
r35837 r37488 81 81 82 82 /** 83 * Filter additional database tables to repair.83 * Filters additional database tables to repair. 84 84 * 85 85 * @since 3.0.0 -
trunk/src/wp-admin/media-upload.php
r33853 r37488 54 54 } else { 55 55 /** 56 * Filter the default media upload type in the legacy (pre-3.5.0) media popup.56 * Filters the default media upload type in the legacy (pre-3.5.0) media popup. 57 57 * 58 58 * @since 2.5.0 … … 69 69 } else { 70 70 /** 71 * Filter the default tab in the legacy (pre-3.5.0) media popup.71 * Filters the default tab in the legacy (pre-3.5.0) media popup. 72 72 * 73 73 * @since 2.5.0 -
trunk/src/wp-admin/menu-header.php
r36970 r37488 28 28 29 29 /** 30 * Filter the parent file of an admin menu sub-menu item.30 * Filters the parent file of an admin menu sub-menu item. 31 31 * 32 32 * Allows plugins to move sub-menu items around. … … 39 39 40 40 /** 41 * Filter the file of an admin menu sub-menu item.41 * Filters the file of an admin menu sub-menu item. 42 42 * 43 43 * @since 4.4.0 -
trunk/src/wp-admin/ms-delete-site.php
r33029 r37488 61 61 ###SITE_NAME###" ); 62 62 /** 63 * Filter the email content sent when a site in a Multisite network is deleted.63 * Filters the email content sent when a site in a Multisite network is deleted. 64 64 * 65 65 * @since 3.0.0 -
trunk/src/wp-admin/my-sites.php
r36709 r37488 110 110 echo "<h3>{$user_blog->blogname}</h3>"; 111 111 /** 112 * Filter the row links displayed for each site on the My Sites screen.112 * Filters the row links displayed for each site on the My Sites screen. 113 113 * 114 114 * @since MU -
trunk/src/wp-admin/nav-menus.php
r36852 r37488 712 712 713 713 /** 714 * Filter the number of locations listed per menu in the drop-down select.714 * Filters the number of locations listed per menu in the drop-down select. 715 715 * 716 716 * @since 3.6.0 -
trunk/src/wp-admin/network/admin.php
r28083 r37488 19 19 20 20 /** 21 * Filter whether to redirect the request to the Network Admin.21 * Filters whether to redirect the request to the Network Admin. 22 22 * 23 23 * @since 3.2.0 -
trunk/src/wp-admin/network/settings.php
r37124 r37488 348 348 $menu_perms = get_site_option( 'menu_items' ); 349 349 /** 350 * Filter available network-wide administration menu options.350 * Filters available network-wide administration menu options. 351 351 * 352 352 * Options returned to this filter are output as individual checkboxes that, when selected, -
trunk/src/wp-admin/network/site-users.php
r37466 r37488 186 186 187 187 /** 188 * Filter whether to show the Add Existing User form on the Multisite Users screen.188 * Filters whether to show the Add Existing User form on the Multisite Users screen. 189 189 * 190 190 * @since 3.1.0 … … 293 293 <?php 294 294 /** 295 * Filter whether to show the Add New User form on the Multisite Users screen.295 * Filters whether to show the Add New User form on the Multisite Users screen. 296 296 * 297 297 * @since 3.1.0 -
trunk/src/wp-admin/network/sites.php
r36709 r37488 260 260 default: 261 261 /** 262 * Filter a specific, non-default site-updated message in the Network admin.262 * Filters a specific, non-default site-updated message in the Network admin. 263 263 * 264 264 * The dynamic portion of the hook name, `$_GET['updated']`, refers to the -
trunk/src/wp-admin/options-discussion.php
r37227 r37488 79 79 <?php 80 80 /** 81 * Filter the maximum depth of threaded/nested comments.81 * Filters the maximum depth of threaded/nested comments. 82 82 * 83 83 * @since 2.7.0. … … 230 230 ); 231 231 /** 232 * Filter the default avatars.232 * Filters the default avatars. 233 233 * 234 234 * Avatars are stored in key/value pairs, where the key is option value, … … 257 257 258 258 /** 259 * Filter the HTML output of the default avatar list.259 * Filters the HTML output of the default avatar list. 260 260 * 261 261 * @since 2.6.0 -
trunk/src/wp-admin/options-general.php
r36656 r37488 232 232 <?php 233 233 /** 234 * Filter the default date formats.234 * Filters the default date formats. 235 235 * 236 236 * @since 2.7.0 … … 269 269 <?php 270 270 /** 271 * Filter the default time formats.271 * Filters the default time formats. 272 272 * 273 273 * @since 2.7.0 -
trunk/src/wp-admin/options-writing.php
r37198 r37488 157 157 <?php 158 158 /** 159 * Filter whether to enable the Update Services section in the Writing settings screen.159 * Filters whether to enable the Update Services section in the Writing settings screen. 160 160 * 161 161 * @since 3.0.0 -
trunk/src/wp-admin/options.php
r37435 r37488 33 33 34 34 /** 35 * Filter the capability required when using the Settings API.35 * Filters the capability required when using the Settings API. 36 36 * 37 37 * By default, the options groups for all registered settings require the manage_options capability. … … 125 125 126 126 /** 127 * Filter whether the post-by-email functionality is enabled.127 * Filters whether the post-by-email functionality is enabled. 128 128 * 129 129 * @since 3.0.0 … … 136 136 137 137 /** 138 * Filter the options white list.138 * Filters the options white list. 139 139 * 140 140 * @since 2.7.0 -
trunk/src/wp-admin/plugin-editor.php
r35107 r37488 107 107 108 108 /** 109 * Filter file type extensions editable in the plugin editor.109 * Filters file type extensions editable in the plugin editor. 110 110 * 111 111 * @since 2.8.0 -
trunk/src/wp-admin/theme-editor.php
r35180 r37488 67 67 68 68 /** 69 * Filter the list of file types allowed for editing in the Theme editor.69 * Filters the list of file types allowed for editing in the Theme editor. 70 70 * 71 71 * @since 4.4.0 -
trunk/src/wp-admin/theme-install.php
r37431 r37488 117 117 118 118 /** 119 * Filter the tabs shown on the Add Themes screen.119 * Filters the tabs shown on the Add Themes screen. 120 120 * 121 121 * This filter is for backward compatibility only, for the suppression of the upload tab. -
trunk/src/wp-admin/user-edit.php
r37103 r37488 61 61 62 62 /** 63 * Filter whether to allow administrators on Multisite to edit every user.63 * Filters whether to allow administrators on Multisite to edit every user. 64 64 * 65 65 * Enabling the user editing form via this filter also hinges on the user holding … … 427 427 <?php 428 428 /** 429 * Filter a user contactmethod label.429 * Filters a user contactmethod label. 430 430 * 431 431 * The dynamic portion of the filter hook, `$name`, refers to … … 471 471 472 472 /** 473 * Filter the user profile picture description displayed under the Gravatar.473 * Filters the user profile picture description displayed under the Gravatar. 474 474 * 475 475 * @since 4.4.0 … … 485 485 <?php 486 486 /** 487 * Filter the display of the password fields.487 * Filters the display of the password fields. 488 488 * 489 489 * @since 1.5.1 … … 602 602 <?php 603 603 /** 604 * Filter whether to display additional capabilities for the user.604 * Filters whether to display additional capabilities for the user. 605 605 * 606 606 * The 'Additional Capabilities' section will only be enabled if -
trunk/src/wp-admin/user-new.php
r36697 r37488 134 134 } else { 135 135 /** 136 * Filter the user_login, also known as the username, before it is added to the site.136 * Filters the user_login, also known as the username, before it is added to the site. 137 137 * 138 138 * @since 2.0.3 … … 211 211 212 212 /** 213 * Filter whether to enable user auto-complete for non-super admins in Multisite.213 * Filters whether to enable user auto-complete for non-super admins in Multisite. 214 214 * 215 215 * @since 3.4.0 -
trunk/src/wp-admin/user/admin.php
r28083 r37488 19 19 $redirect_user_admin_request = ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ); 20 20 /** 21 * Filter whether to redirect the request to the User Admin in Multisite.21 * Filters whether to redirect the request to the User Admin in Multisite. 22 22 * 23 23 * @since 3.2.0
Note: See TracChangeset
for help on using the changeset viewer.