Changeset 20642
- Timestamp:
- 04/30/2012 02:02:11 AM (13 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/deprecated.php
r20610 r20642 3153 3153 clean_post_cache( $id ); 3154 3154 } 3155 3156 /**3157 * Checks a theme's support for a given feature before loading the functions which implement it.3158 *3159 * @since 2.9.03160 * @deprecated 3.4.03161 * @deprecated Use require()3162 *3163 * @param string $feature the feature being checked3164 * @param string $include the file containing the functions that implement the feature3165 */3166 function require_if_theme_supports( $feature, $include ) {3167 _deprecated_function( __FUNCTION__, '3.4', 'require()' );3168 if ( current_theme_supports( $feature ) )3169 require ( $include );3170 } -
trunk/wp-includes/theme.php
r20610 r20642 1513 1513 1514 1514 /** 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 */ 1521 function require_if_theme_supports( $feature, $include) { 1522 if ( current_theme_supports( $feature ) ) 1523 require ( $include ); 1524 } 1525 1526 /** 1515 1527 * Checks an attachment being deleted to see if it's a header or background image. 1516 1528 *
Note: See TracChangeset
for help on using the changeset viewer.