Make WordPress Core


Ignore:
Timestamp:
04/30/2012 02:02:11 AM (13 years ago)
Author:
nacin
Message:

Undeprecate require_if_theme_supports() for themes using it for legitimate reasons. see [20610]. props scribu, jkudish. fixes #20556.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/theme.php

    r20610 r20642  
    15131513
    15141514/**
     1515 * Checks a theme's support for a given feature before loading the functions which implement it.
     1516 *
     1517 * @since 2.9.0
     1518 * @param string $feature the feature being checked
     1519 * @param string $include the file containing the functions that implement the feature
     1520 */
     1521function require_if_theme_supports( $feature, $include) {
     1522    if ( current_theme_supports( $feature ) )
     1523        require ( $include );
     1524}
     1525
     1526/**
    15151527 * Checks an attachment being deleted to see if it's a header or background image.
    15161528 *
Note: See TracChangeset for help on using the changeset viewer.