wordpress - Can not link the author -
i making blog site. want show posts of user linking his/her user name. it's not working. code
<a href="<?php get_author_posts_url(get_the_author_meta('id'));?>"><?php the_author();?></a> what's wrong actually?
try :
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'id' ) ); ?>"><?php the_author(); ?></a>
Comments
Post a Comment