Changeset 13877 for trunk/wp-includes/theme.php
- Timestamp:
- 03/29/2010 04:26:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/theme.php
r13856 r13877 1547 1547 1548 1548 /** 1549 * Allows a theme to de-register its support of a certain feature 1550 * 1551 * Must be called in the themes functions.php file to work. 1552 * 1553 * @since 3.0.0 1554 * @param string $feature the feature being added 1555 */ 1556 function remove_theme_support( $feature ) { 1557 global $_wp_theme_features; 1558 1559 unset($_wp_theme_features[$feature]); 1560 } 1561 1562 /** 1549 1563 * Checks a theme's support for a given feature 1550 1564 *
Note: See TracChangeset
for help on using the changeset viewer.