Changeset 449
- Timestamp:
- 02/28/2014 10:50:29 PM (11 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-makehome
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-makehome/functions.php
r141 r449 19 19 add_filter('post_class','make_home_site_classes', 10, 3); 20 20 function make_home_site_classes($classes, $class, $id) { 21 $title = get_the_title($id); 22 $title = sanitize_title($title); 23 $classes[] = 'make-'.$title; 21 $classes[] = sanitize_html_class( 'make-' . get_post( $id )->post_name ); 24 22 return $classes; 25 23 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-makehome/style.css
r127 r449 221 221 section.get-involved article.make-themes h2:before { content: '\f105'; } 222 222 section.get-involved article.make-plugins h2:before { content: '\f106'; } 223 section.get-involved article.make-doc umentationh2:before { content: '\f123'; }223 section.get-involved article.make-docs h2:before { content: '\f123'; } 224 224 section.get-involved article.make-community h2:before { content: '\f125'; } 225 225 section.get-involved article.make-meta h2:before { content: '\f325'; }
Note: See TracChangeset
for help on using the changeset viewer.