All pastes #2109501 Raw Edit

Mine

public php v1 · immutable
#2109501 ·published 2012-02-03 20:48 UTC
rendered paste body
<?php function trustedauthority_posted_on() {	printf( __( '<span class="sep">Posted on </span><time class="entry-date" datetime="%1$s" pubdate>%2$s</time><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%3$s" title="%4$s" rel="author">%5$s</a></span></span>', 'trusted-authority' ),		esc_attr( get_the_date( 'c' ) ),		esc_html( get_the_date() ),		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),		esc_attr( sprintf( __( 'View all posts by %s', 'trusted-authority' ), get_the_author() ) ),		get_the_author()	);}?>