ich will das datum anpassen und zwar so das tag,monat und jahr jeweils ein SPAN tag bekommen zum stylen. das sieht aber in der neuen version seltsam aus:
PHP
function twentyten_posted_on() {
printf( __( '%2$s', 'twentyten' ),
'meta-prep meta-prep-author',
sprintf( '<span class="entry-date">%3$s</span>',
get_permalink(),
esc_attr( get_the_time() ),
get_the_date()
),
sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
get_author_posts_url( get_the_author_meta( 'ID' ) ),
sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
get_the_author()
)
);
}
endif;
Alles anzeigen
wie kann man das denn hier aufsplitten?: