Ticket #1187: 1187.diff
File 1187.diff, 4.0 KB (added by , 9 years ago) |
---|
-
wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php
diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php b/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php index 1c0fb0a..8ea3ee1 100644
a b add_action( 'wp_footer', 'wporg_themes_view_templates' ); 168 168 */ 169 169 function wporg_themes_get_feature_list() { 170 170 return array( 171 __( 'Colors', 'wporg-themes' ) => array(172 'black' => __( 'Black', 'wporg-themes' ),173 'blue' => __( 'Blue', 'wporg-themes' ),174 'brown' => __( 'Brown', 'wporg-themes' ),175 'gray' => __( 'Gray', 'wporg-themes' ),176 'green' => __( 'Green', 'wporg-themes' ),177 'orange' => __( 'Orange', 'wporg-themes' ),178 'pink' => __( 'Pink', 'wporg-themes' ),179 'purple' => __( 'Purple', 'wporg-themes' ),180 'red' => __( 'Red', 'wporg-themes' ),181 'silver' => __( 'Silver', 'wporg-themes' ),182 'tan' => __( 'Tan', 'wporg-themes' ),183 'white' => __( 'White', 'wporg-themes' ),184 'yellow' => __( 'Yellow', 'wporg-themes' ),185 'dark' => __( 'Dark', 'wporg-themes' ),186 'light' => __( 'Light', 'wporg-themes' ),187 ),188 171 __( 'Layout', 'wporg-themes' ) => array( 189 'fixed-layout' => __( 'Fixed Layout', 'wporg-themes' ), 190 'fluid-layout' => __( 'Fluid Layout', 'wporg-themes' ), 191 'responsive-layout' => __( 'Responsive Layout', 'wporg-themes' ), 172 'grid-layout' => __( 'Grid Layout', 'wporg-themes' ), 192 173 'one-column' => __( 'One Column', 'wporg-themes' ), 193 174 'two-columns' => __( 'Two Columns', 'wporg-themes' ), 194 175 'three-columns' => __( 'Three Columns', 'wporg-themes' ), … … function wporg_themes_get_feature_list() { 198 179 ), 199 180 __( 'Features', 'wporg-themes' ) => array( 200 181 'accessibility-ready' => __( 'Accessibility Ready', 'wporg-themes' ), 201 'blavatar' => __( 'Blavatar', 'wporg-themes' ),202 182 'buddypress' => __( 'BuddyPress', 'wporg-themes' ), 203 183 'custom-background' => __( 'Custom Background', 'wporg-themes' ), 204 184 'custom-colors' => __( 'Custom Colors', 'wporg-themes' ), 205 185 'custom-header' => __( 'Custom Header', 'wporg-themes' ), 186 'custom-logo' => __( 'Custom Logo', 'wporg-themes' ), 206 187 'custom-menu' => __( 'Custom Menu', 'wporg-themes' ), 207 188 'editor-style' => __( 'Editor Style', 'wporg-themes' ), 208 189 'featured-image-header' => __( 'Featured Image Header', 'wporg-themes' ), 209 190 'featured-images' => __( 'Featured Images', 'wporg-themes' ), 210 191 'flexible-header' => __( 'Flexible Header', 'wporg-themes' ), 192 'footer-widgets' => __( 'Footer Widgets', 'wporg-themes' ), 211 193 'front-page-post-form' => __( 'Front Page Posting', 'wporg-themes' ), 212 194 'full-width-template' => __( 'Full Width Template', 'wporg-themes' ), 213 195 'microformats' => __( 'Microformats', 'wporg-themes' ), … … function wporg_themes_get_feature_list() { 219 201 'translation-ready' => __( 'Translation Ready', 'wporg-themes' ), 220 202 ), 221 203 __( 'Subject', 'wporg-themes' ) => array( 222 'holiday' => __( 'Holiday', 'wporg-themes' ), 223 'photoblogging' => __( 'Photoblogging', 'wporg-themes' ), 224 'seasonal' => __( 'Seasonal', 'wporg-themes' ), 204 'blog' => __( 'Blog', 'wporg-themes' ), 205 'e-commerce' => __( 'E-Commerce', 'wporg-themes' ), 206 'education' => __( 'Education', 'wporg-themes' ), 207 'entertainment' => __( 'Entertainment', 'wporg-themes' ), 208 'food-and-drink' => __( 'Food & Drink', 'wporg-themes' ), 209 'holiday' => __( 'Holiday', 'wporg-themes' ), 210 'news' => __( 'News', 'wporg-themes' ), 211 'photography' => __( 'Photography', 'wporg-themes' ), 212 'portfolio' => __( 'Portfolio', 'wporg-themes' ), 225 213 ) 226 214 ); 227 215 }