Make WordPress Core


Ignore:
Timestamp:
11/17/2012 03:11:29 PM (12 years ago)
Author:
ryan
Message:

Pinking shears

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/post-template.php

    r22451 r22634  
    442442                else
    443443                    $classes[] = 'single-format-standard';
    444             }           
     444            }
    445445        }
    446446
     
    460460            if ( isset( $author->user_nicename ) ) {
    461461                $classes[] = 'author-' . sanitize_html_class( $author->user_nicename, $author->ID );
    462                 $classes[] = 'author-' . $author->ID;               
     462                $classes[] = 'author-' . $author->ID;
    463463            }
    464464        } elseif ( is_category() ) {
     
    467467            if ( isset( $cat->term_id ) ) {
    468468                $classes[] = 'category-' . sanitize_html_class( $cat->slug, $cat->term_id );
    469                 $classes[] = 'category-' . $cat->term_id;               
     469                $classes[] = 'category-' . $cat->term_id;
    470470            }
    471471        } elseif ( is_tag() ) {
     
    474474            if ( isset( $tags->term_id ) ) {
    475475                $classes[] = 'tag-' . sanitize_html_class( $tags->slug, $tags->term_id );
    476                 $classes[] = 'tag-' . $tags->term_id;               
     476                $classes[] = 'tag-' . $tags->term_id;
    477477            }
    478478        } elseif ( is_tax() ) {
Note: See TracChangeset for help on using the changeset viewer.