Changeset 28083 for trunk/src/wp-admin/options-writing.php
- Timestamp:
- 04/12/2014 12:00:32 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-writing.php
r27469 r28083 38 38 } 39 39 40 /** 41 * Toggle site update services configuration functionality. 42 * 43 * @since 3.0.0 44 * 45 * @param bool True or false, based on whether update services configuration is enabled or not. 46 */ 40 /** This filter is documented in wp-admin/options-writing.php */ 47 41 if ( apply_filters( 'enable_update_services_configuration', true ) ) { 48 42 get_current_screen()->add_help_tab( array( … … 168 162 169 163 <?php 170 /** This filter is documented in wp-admin/options-writing.php */ 164 /** 165 * Filter whether to enable the Update Services section in the Writing settings screen. 166 * 167 * @since 3.0.0 168 * 169 * @param bool $enable Whether to enable the Update Services settings area. Default true. 170 */ 171 171 if ( apply_filters( 'enable_update_services_configuration', true ) ) { 172 172 ?>
Note: See TracChangeset
for help on using the changeset viewer.