我认为最少的胃灼热将是wordpress > the_author_meta。
像您所做的那样,让每个用户在 wordpress 用户配置文件中添加他们的 url。然后在您的主题中functions.php
使用the_author_meta('user_url')
. 请记住,这将回显 url。要将其用作变量,请使用get_the_author_meta('user_url')
.
这是我们如何使用二十个主题来完成的,这是在functions.php
function twentyten_posted_on() {
printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ),
'meta-prep meta-prep-author',
sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
get_permalink(),
esc_attr( get_the_time() ),
get_the_date()
),
sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
get_the_author_meta('user_url'), //changed from get_author_posts_url( get_the_author_meta( 'ID' ) ),
sprintf( esc_attr__( 'About %s', 'twentyten' ), get_the_author() ),
get_the_author()
)
);
}