Making WordPress.org

Ticket #1187: 1187.diff

File 1187.diff, 4.0 KB (added by rabmalin, 9 years ago)

Add Custom Log

  • 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' ); 
    168168 */
    169169function wporg_themes_get_feature_list() {
    170170        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                 ),
    188171                __( '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' ),
    192173                        'one-column'        => __( 'One Column',        'wporg-themes' ),
    193174                        'two-columns'       => __( 'Two Columns',       'wporg-themes' ),
    194175                        'three-columns'     => __( 'Three Columns',     'wporg-themes' ),
    function wporg_themes_get_feature_list() { 
    198179                ),
    199180                __( 'Features', 'wporg-themes' ) => array(
    200181                        'accessibility-ready'   => __( 'Accessibility Ready',   'wporg-themes' ),
    201                         'blavatar'              => __( 'Blavatar',              'wporg-themes' ),
    202182                        'buddypress'            => __( 'BuddyPress',            'wporg-themes' ),
    203183                        'custom-background'     => __( 'Custom Background',     'wporg-themes' ),
    204184                        'custom-colors'         => __( 'Custom Colors',         'wporg-themes' ),
    205185                        'custom-header'         => __( 'Custom Header',         'wporg-themes' ),
     186                        'custom-logo'           => __( 'Custom Logo',           'wporg-themes' ),
    206187                        'custom-menu'           => __( 'Custom Menu',           'wporg-themes' ),
    207188                        'editor-style'          => __( 'Editor Style',          'wporg-themes' ),
    208189                        'featured-image-header' => __( 'Featured Image Header', 'wporg-themes' ),
    209190                        'featured-images'       => __( 'Featured Images',       'wporg-themes' ),
    210191                        'flexible-header'       => __( 'Flexible Header',       'wporg-themes' ),
     192                        'footer-widgets'        => __( 'Footer Widgets',        'wporg-themes' ),
    211193                        'front-page-post-form'  => __( 'Front Page Posting',    'wporg-themes' ),
    212194                        'full-width-template'   => __( 'Full Width Template',   'wporg-themes' ),
    213195                        'microformats'          => __( 'Microformats',          'wporg-themes' ),
    function wporg_themes_get_feature_list() { 
    219201                        'translation-ready'     => __( 'Translation Ready',     'wporg-themes' ),
    220202                ),
    221203                __( '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' ),
    225213                )
    226214        );
    227215}