Make WordPress Core

Changeset 27139


Ignore:
Timestamp:
02/08/2014 10:54:47 PM (11 years ago)
Author:
DrewAPicture
Message:

Inline documentation tweaks for has_image_size() and remove_image_size().

See #26951.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/media.php

    r27129 r27139  
    205205 * @since 3.9.0
    206206 *
    207  * @param string $name The image size to check.
    208  * @return bool True if it exists, false if not.
     207 * @param string $name Optional. The image size to check. Default empty.
     208 * @return bool True if the image size exists, false if not.
    209209 */
    210210function has_image_size( $name = '' ) {
     
    220220 *
    221221 * @param string $name The image size to remove.
    222  * @return bool True on success, false on failure.
     222 * @return bool True if the image size was successfully removed, false on failure.
    223223 */
    224224function remove_image_size( $name ) {
Note: See TracChangeset for help on using the changeset viewer.