Changeset 3389
- Timestamp:
- 06/16/2016 01:22:49 PM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style-rtl.css
r3359 r3389 2077 2077 2078 2078 /*-------------------------------------------------------------- 2079 ## 4042079 ## Template Hierarchy 2080 2080 --------------------------------------------------------------*/ 2081 2081 .error404 { … … 2172 2172 } 2173 2173 2174 /*--------------------------------------------------------------2175 ## Pages2176 --------------------------------------------------------------*/2177 2174 .page .type-page { 2178 2175 margin: 0 auto; … … 2184 2181 margin-right: -6.5rem; 2185 2182 margin-left: -6.5rem; 2183 } 2184 2185 .archive .site-main { 2186 margin-top: 32px; 2187 margin-top: 2rem; 2188 padding: 0 10px; 2189 } 2190 2191 .archive .page-header { 2192 margin: 32px 0; 2193 margin: 2rem 0; 2186 2194 } 2187 2195 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style.css
r3356 r3389 2077 2077 2078 2078 /*-------------------------------------------------------------- 2079 ## 4042079 ## Template Hierarchy 2080 2080 --------------------------------------------------------------*/ 2081 2081 .error404 { … … 2172 2172 } 2173 2173 2174 /*--------------------------------------------------------------2175 ## Pages2176 --------------------------------------------------------------*/2177 2174 .page .type-page { 2178 2175 margin: 0 auto; … … 2184 2181 margin-left: -6.5rem; 2185 2182 margin-right: -6.5rem; 2183 } 2184 2185 .archive .site-main { 2186 margin-top: 32px; 2187 margin-top: 2rem; 2188 padding: 0 10px; 2189 } 2190 2191 .archive .page-header { 2192 margin: 32px 0; 2193 margin: 2rem 0; 2186 2194 } 2187 2195 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/functions.php
r3388 r3389 182 182 183 183 /** 184 * Bold archive terms are made here. 185 * 186 * @param string $term The archive term to bold. 187 * @return string 188 */ 189 function strong_archive_title( $term ) { 190 return '<strong>' . $term . '</strong>'; 191 } 192 add_filter( 'post_type_archive_title', __NAMESPACE__ . '\strong_archive_title' ); 193 add_filter( 'single_term_title', __NAMESPACE__ . '\strong_archive_title' ); 194 add_filter( 'single_cat_title', __NAMESPACE__ . '\strong_archive_title' ); 195 add_filter( 'single_tag_title', __NAMESPACE__ . '\strong_archive_title' ); 196 add_filter( 'get_the_date', __NAMESPACE__ . '\strong_archive_title' ); 197 198 /** 184 199 * Custom template tags for this theme. 185 200 */ -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/site/_site.scss
r3346 r3389 17 17 18 18 /*-------------------------------------------------------------- 19 ## 40419 ## Template Hierarchy 20 20 --------------------------------------------------------------*/ 21 21 @import "primary/404"; 22 22 23 /*--------------------------------------------------------------24 ## Pages25 --------------------------------------------------------------*/26 23 @import "primary/page"; 24 @import "archive"; 27 25 28 26 /*--------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.