Hallo,
ich nutze UU 2014 Design und bei dem werden bei Beträgen die Überschrift, sowie Datum und Autor mit Link versehen.
Die Linsk möchte ich komplett weg haben. Ich habe gefunden wo die gesetzt werden. Jetzt ist es normale Schrift und das stört mich nun.
Daher hoff eich auf Hilfe, wo stelle ich fest, dass die Überschrift der Beiträge FETT geschrieben wird und eine andere Schriftgröße hat?
Und auch der Autor, kleinere schrift und statt unten links, unten rechts.
Hier ist ein Teil von der template-tags.php
Falls man es an der Stelle macht.
Danke für die Hilfe.
ZitatAlles anzeigen[COLOR=#0000ff]
[/COLOR][COLOR=#0000ff]function uu2014_posted_on() {
[/COLOR][COLOR=#0000ff] $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';[/COLOR]
[COLOR=#0000ff] if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {[/COLOR]
[COLOR=#0000ff] $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';[/COLOR]
[COLOR=#0000ff] }[/COLOR]
[COLOR=#0000ff]
[/COLOR]
[COLOR=#0000ff] $time_string = sprintf( $time_string,[/COLOR]
[COLOR=#0000ff] esc_attr( get_the_date( 'c' ) ),[/COLOR]
[COLOR=#0000ff] esc_html( get_the_date() ),[/COLOR]
[COLOR=#0000ff] esc_attr( get_the_modified_date( 'c' ) ),[/COLOR]
[COLOR=#0000ff] esc_html( get_the_modified_date() )[/COLOR]
[COLOR=#0000ff] );[/COLOR]
[COLOR=#0000ff]
[/COLOR]
[COLOR=#0000ff] $posted_on = sprintf([/COLOR]
[COLOR=#0000ff] _x( 'Erstellt am %s', 'post date', 'uu2014' ),[/COLOR]
[COLOR=#0000ff] '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'[/COLOR]
[COLOR=#0000ff] );[/COLOR]
[COLOR=#0000ff]
[/COLOR]
[COLOR=#0000ff] $byline = sprintf([/COLOR]
[COLOR=#0000ff] _x( 'von %s', 'post author', 'uu2014' ),[/COLOR]
[COLOR=#0000ff] '<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>'[/COLOR]
[COLOR=#0000ff] );[/COLOR]
[COLOR=#0000ff]
[/COLOR]
[COLOR=#0000ff] echo '<span class="posted-on">' . $posted_on . '</span><span class="byline"> ' . $byline . '</span>';[/COLOR]
[COLOR=#0000ff]
[/COLOR]
[COLOR=#0000ff]}[/COLOR]