Unclear postmetadata
-
Hi guys and girls,
I’m updating a theme and came across unclear postmetadata code to display post author + link to the post author archive page:
<?php printf( __( 'By %s', 'mytextdomain' ), sprintf( '<a href="%1$s">%2$s</a>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ) ); ?>
So I worked on it and think this is much better:
<?php printf( __( 'By %s', 'mytextdomain' ), '<a href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ). '</a>' ); ?>
Any thoughts? Better this way?
Guido
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Unclear postmetadata’ is closed to new replies.