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

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -