Created
June 1, 2013 18:32
-
-
Save randyzwitch/5691293 to your computer and use it in GitHub Desktop.
Removing more WordPress code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- <?php | |
/* translators: used between list items, there is a space after the comma */ | |
$categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); | |
/* translators: used between list items, there is a space after the comma */ | |
$tag_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); | |
if ( '' != $tag_list ) { | |
$utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' ); | |
} elseif ( '' != $categories_list ) { | |
$utility_text = __( 'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' ); | |
} else { | |
$utility_text = __( 'This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' ); | |
} | |
printf( | |
$utility_text, | |
$categories_list, | |
$tag_list, | |
esc_url( get_permalink() ), | |
the_title_attribute( 'echo=0' ), | |
get_the_author(), | |
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) | |
); | |
?> --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment