| @@ -1,4 +1,49 @@ | ||
| 1 | 1 | .entry-meta .byline, |
| 2 | -.entry-header .entry-meta > span.byline{ | |
| 2 | +.entry-header .entry-meta>span.byline { | |
| 3 | 3 | display: none; |
| 4 | +} | |
| 5 | + | |
| 6 | +/* Hide with css and author */ | |
| 7 | + | |
| 8 | +.hide-meta-author .entry-meta .byline, | |
| 9 | +.hide-meta-author .entry-meta .by-author, | |
| 10 | +.hide-meta-author.entry-header .entry-meta>span.byline, | |
| 11 | +.hide-meta-author .entry-meta .author.vcard { | |
| 12 | + display: none; | |
| 13 | +} | |
| 14 | + | |
| 15 | +/* Hide with css and date */ | |
| 16 | + | |
| 17 | +.hide-meta-date .entry-meta .posted-on, | |
| 18 | +.hide-meta-date .entry-header .entry-meta>span.posted-on { | |
| 19 | + display: none; | |
| 20 | +} | |
| 21 | + | |
| 22 | +/* Hide with php and date */ | |
| 23 | + | |
| 24 | +.hide-meta-date-php .entry-meta .posted-on:before, | |
| 25 | +.hide-meta-date-php .entry-header .entry-meta>span.posted-on:before, | |
| 26 | +.hide-meta-date-php .entry-meta .posted-on:after, | |
| 27 | +.hide-meta-date-php .entry-header .entry-meta>span.posted-on:after, | |
| 28 | +.hide-meta-date-php .entry-meta .posted-on, | |
| 29 | +.hide-meta-date-php .entry-header .entry-meta>span.posted-on { | |
| 30 | + content: ''; | |
| 31 | + display: none; | |
| 32 | + margin: 0; | |
| 33 | +} | |
| 34 | + | |
| 35 | +/* Hide with php and author */ | |
| 36 | + | |
| 37 | +.hide-meta-author-php .entry-meta .byline:before, | |
| 38 | +.hide-meta-author-php .entry-header .entry-meta span.byline:before, | |
| 39 | +.hide-meta-author-php .entry-meta .byline:after, | |
| 40 | +.hide-meta-author-php .entry-header .entry-meta span.byline:after, | |
| 41 | +.hide-meta-author-php.single .byline, | |
| 42 | +.hide-meta-author-php .group-blog .byline, | |
| 43 | +.hide-meta-author-php .entry-meta .byline, | |
| 44 | +.hide-meta-author-php .entry-header .entry-meta>span.byline, | |
| 45 | +.hide-meta-author-php .entry-meta .author.vcard { | |
| 46 | + content: ''; | |
| 47 | + display: none; | |
| 48 | + margin: 0; | |
| 4 | 49 | } |