Changeset 17735
- Timestamp:
- 04/28/2011 08:59:42 AM (15 years ago)
- Location:
- trunk/wp-content/themes/twentyeleven
- Files:
-
- 1 deleted
- 1 edited
- 4 copied
-
functions.php (modified) (1 diff)
-
inc/images (copied) (copied from trunk/wp-content/themes/twentyeleven/inc/theme-options/images)
-
inc/theme-options (deleted)
-
inc/theme-options.css (copied) (copied from trunk/wp-content/themes/twentyeleven/inc/theme-options/theme-options.css)
-
inc/theme-options.js (copied) (copied from trunk/wp-content/themes/twentyeleven/inc/theme-options/theme-options.js)
-
inc/theme-options.php (copied) (copied from trunk/wp-content/themes/twentyeleven/inc/theme-options/theme-options.php) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyeleven/functions.php
r17729 r17735 89 89 * Load up our theme options page 90 90 */ 91 require( dirname( __FILE__ ) . '/inc/theme-options /theme-options.php' );91 require( dirname( __FILE__ ) . '/inc/theme-options.php' ); 92 92 93 93 /** -
trunk/wp-content/themes/twentyeleven/inc/theme-options.php
r17734 r17735 22 22 return; 23 23 24 wp_enqueue_style( 'twentyeleven-theme-options', get_template_directory_uri() . '/inc/theme-options /theme-options.css', '', '0.1' );25 wp_enqueue_script( 'twentyeleven-theme-options', get_template_directory_uri() . '/inc/theme-options /theme-options.js' );24 wp_enqueue_style( 'twentyeleven-theme-options', get_template_directory_uri() . '/inc/theme-options.css', '', '0.1' ); 25 wp_enqueue_script( 'twentyeleven-theme-options', get_template_directory_uri() . '/inc/theme-options.js' ); 26 26 wp_enqueue_style( 'farbtastic' ); 27 27 wp_enqueue_script( 'farbtastic' ); … … 84 84 'value' => 'light', 85 85 'label' => __( 'Light', 'twentyeleven' ), 86 'thumbnail' => get_template_directory_uri() . '/inc/ theme-options/images/light.png',86 'thumbnail' => get_template_directory_uri() . '/inc/images/light.png', 87 87 ), 88 88 'dark' => array( 89 89 'value' => 'dark', 90 90 'label' => __( 'Dark', 'twentyeleven' ), 91 'thumbnail' => get_template_directory_uri() . '/inc/ theme-options/images/dark.png',91 'thumbnail' => get_template_directory_uri() . '/inc/images/dark.png', 92 92 ), 93 93 ); … … 106 106 'value' => 'content-sidebar', 107 107 'label' => __( 'Content on left', 'twentyeleven' ), 108 'thumbnail' => get_template_directory_uri() . '/inc/ theme-options/images/content-sidebar.png',108 'thumbnail' => get_template_directory_uri() . '/inc/images/content-sidebar.png', 109 109 ), 110 110 'sidebar-content' => array( 111 111 'value' => 'sidebar-content', 112 112 'label' => __( 'Content on right', 'twentyeleven' ), 113 'thumbnail' => get_template_directory_uri() . '/inc/ theme-options/images/sidebar-content.png',113 'thumbnail' => get_template_directory_uri() . '/inc/images/sidebar-content.png', 114 114 ), 115 115 'content' => array( 116 116 'value' => 'content', 117 117 'label' => __( 'One-column, no Sidebar', 'twentyeleven' ), 118 'thumbnail' => get_template_directory_uri() . '/inc/ theme-options/images/content.png',118 'thumbnail' => get_template_directory_uri() . '/inc/images/content.png', 119 119 ), 120 120 );
Note: See TracChangeset
for help on using the changeset viewer.