是的,但你必须使用get_author_posts_url()
(参见Codex).
法典中的示例是(不是我的代码):
<a href="<?php echo get_author_posts_url( get_the_author_meta( \'ID\' ), get_the_author_meta( \'user_nicename\' ) ); ?>"><?php the_author(); ?></a>
您可以添加自己的
title="My Better Title"
因为
<a>
标记,让它说出你喜欢的任何内容:
<a href="<?php echo get_author_posts_url( get_the_author_meta( \'ID\' ), get_the_author_meta( \'user_nicename\' ) ); ?>" title="My Better Title"><?php the_author(); ?></a>
将其替换为您的文本或任何您可以生成的内容。如果您从其他地方收到文本,请确保将其包装在
esc_attr()
所以它不会破坏您的HTML。