BuilderChild-Anchor
From IThemes Codex
How to set up Anchor so it looks like the demo site
Follow this.
How to fix dates in search results page
1. Copy/upload wp-content/themes/Builder/search.php to wp-content/themes/BuilderChild-Anchor
2. Edit wp-content/themes/BuilderChild-Anchor/search.php.
Change
<div class="entry-meta 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>
to
<div class="entry-meta date"> <span class="month"><?php the_time( 'M' ); ?></span><br /> <span class="day"><?php the_time( 'j' ); ?></span> </div>

