Make WordPress Core


Ignore:
Timestamp:
04/12/2014 12:00:32 AM (11 years ago)
Author:
DrewAPicture
Message:

Priority fixes for various existing hook documentation.

Props kpdesign.
See #26869

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/options-writing.php

    r27469 r28083  
    3838}
    3939
    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 */
    4741if ( apply_filters( 'enable_update_services_configuration', true ) ) {
    4842    get_current_screen()->add_help_tab( array(
     
    168162
    169163<?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 */
    171171if ( apply_filters( 'enable_update_services_configuration', true ) ) {
    172172?>
Note: See TracChangeset for help on using the changeset viewer.