forked from mirror/_s
Remove author link from archive.php
This commit is contained in:
parent
db5cc6d3ce
commit
9f866cde82
|
@ -28,7 +28,7 @@ get_header(); ?>
|
||||||
* what author we're dealing with (if that is the case).
|
* what author we're dealing with (if that is the case).
|
||||||
*/
|
*/
|
||||||
the_post();
|
the_post();
|
||||||
printf( __( 'Author: %s', '_s' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' );
|
printf( __( 'Author: %s', '_s' ), '<span class="vcard">' . get_the_author() . '</span>' );
|
||||||
/* Since we called the_post() above, we need to
|
/* Since we called the_post() above, we need to
|
||||||
* rewind the loop back to the beginning that way
|
* rewind the loop back to the beginning that way
|
||||||
* we can run the loop properly, in full.
|
* we can run the loop properly, in full.
|
||||||
|
@ -99,4 +99,4 @@ get_header(); ?>
|
||||||
</section><!-- #primary -->
|
</section><!-- #primary -->
|
||||||
|
|
||||||
<?php get_sidebar(); ?>
|
<?php get_sidebar(); ?>
|
||||||
<?php get_footer(); ?>
|
<?php get_footer(); ?>
|
||||||
|
|
Reference in New Issue