BuilderChild-Classen
From IThemes Codex
Contents |
How to simplify author and date info in left metabox
- Before and After
1. Edit theme's index.php, single.php and archive.php.
Add
<div class="post-meta"> <?php printf( __( 'By %s', 'it-l10n-BuilderChild-Classen' ), '<span class="meta-author">' . builder_get_author_link() . '</span>' ); ?> <?php do_action( 'builder_comments_popup_link', '<span class="meta-comments">· ', '</span>', __( 'Comments %s', 'it-l10n-BuilderChild-Classen' ), __( '(0)', 'it-l10n-BuilderChild-Classen' ), __( '(1)', 'it-l10n-BuilderChild-Classen' ), __( '(%)', 'it-l10n-BuilderChild-Classen' ) ); ?> </div> <div class="date"> <span class="weekday"><?php the_time( 'l' ); ?><span class="weekday-comma">,</span></span> <span class="month"><?php the_time( 'F' ); ?></span> <span class="day"><?php the_time( 'j' ); ?><span class="day-suffix"><?php the_time( 'S' ); ?></span><span class="day-comma">,</span></span> <span class="year"><?php the_time( 'Y' ); ?></span> </div>
below
<div class="post-title"> <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> </div>
in each file.
2. Add the following at the end of your theme's style.css:
.leftmetabox {
display: none;
}
.post .post-meta, .date {
letter-spacing: normal;
font-size: 1em;
color: #9ca071;
margin-top: 10px;
}