Hi, Theresa!
Thanks for the nice words about my work!
To do this, in file functions.php, find this code:
// Red Data Ribbons
/* Display red ribbons. */
function anarcho_ribbons() {
if(get_theme_mod('disable_ribbons') == '0') {
if ( is_home() || is_category() || is_archive() || is_search() ) {
printf( '<a href="%1$s">',
esc_url( get_permalink() )
);
}
printf( '<div class="date-tab">
<span class="month">%1$s</span>
<span class="day">%2$s</span>
</div><!-- .date-tab -->',
esc_attr( get_the_date('F') ),
esc_attr( get_the_date('j') )
);
if ( is_home() || is_category() || is_archive() || is_search() ) {
printf( '</a>' ); }
}
}
// END-Red Data Ribbons
and replace to this:
// Red Data Ribbons
/* Display red ribbons. */
function anarcho_ribbons() {
if(get_theme_mod('disable_ribbons') == '0') {
if ( is_home() || is_category() || is_archive() || is_search() ) {
printf( '<a href="%1$s">',
esc_url( get_permalink() )
);
}
printf( '<div class="date-tab">
<span class="month">%1$s</span>
<span class="day">%2$s</span>
</div><!-- .date-tab -->',
esc_attr( get_the_date('F j') ),
esc_attr( get_the_date('Y') )
);
if ( is_home() || is_category() || is_archive() || is_search() ) {
printf( '</a>' ); }
}
}
// END-Red Data Ribbons