Changeset 17816
- Timestamp:
- 05/05/2011 10:46:37 PM (12 years ago)
- Location:
- trunk/wp-content/themes/twentyeleven
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyeleven/functions.php
r17802 r17816 61 61 * functions.php file. 62 62 * 63 * @uses add_theme_support() To add support for post thumbnails and automatic feed links. 63 * @uses load_theme_textdomain() For translation/localization support. 64 * @uses add_editor_style() To style the visual editor. 65 * @uses add_theme_support() To add support for post thumbnails, automatic feed links, and Post Formats. 64 66 * @uses register_nav_menus() To add support for navigation menus. 65 67 * @uses add_custom_background() To add support for a custom background. 66 * @uses load_theme_textdomain() For translation/localization support.67 68 * @uses add_custom_image_header() To add support for a custom header. 68 69 * @uses register_default_headers() To register the default custom header images provided with the theme. … … 84 85 if ( is_readable( $locale_file ) ) 85 86 require_once( $locale_file ); 87 88 // This theme styles the visual editor with editor-style.css to match the theme style. 89 add_editor_style(); 86 90 87 91 // Load up our theme options page and related code.
Note: See TracChangeset
for help on using the changeset viewer.