Make WordPress Core

Changeset 25858


Ignore:
Timestamp:
10/21/2013 09:17:00 PM (12 years ago)
Author:
DrewAPicture
Message:

Improve inline documentation for hooks in wp-admin/customize.php.

Props kpdesign.
Fixes #25444.

File:
1 edited

Legend:

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

    r25826 r25858  
    4545
    4646/**
    47  * Fires when additional Customizer controls scripts are enqueued.
     47 * Enqueue Customizer control scripts.
    4848 *
    4949 * @since 3.4.0
     
    7878
    7979/**
    80  * Fires when Customizer controls styles are printed.
     80 * Print Customizer control styles.
    8181 *
    8282 * @since 3.4.0
     
    8585
    8686/**
    87  * Fires when Customizer controls scripts are printed.
     87 * Print Customizer control scripts.
    8888 *
    8989 * @since 3.4.0
     
    152152
    153153    /**
    154      * Fires when Customizer controls footer scripts are printed.
     154     * Print Customizer control scripts in the footer.
    155155     *
    156156     * @since 3.4.0
     
    173173        $allowed_urls[] = home_url( '/', 'https' );
    174174
     175    /**
     176     * Filter the list of URLs allowed to be clicked and followed in the Customizer preview.
     177     *
     178     * @since 3.4.0
     179     *
     180     * @param array $allowed_urls An array of allowed URLs.
     181     */
    175182    $allowed_urls = array_unique( apply_filters( 'customize_allowed_urls', $allowed_urls ) );
    176183
Note: See TracChangeset for help on using the changeset viewer.