admin管理员组文章数量:1125414
I am looking for a functions.php code which will link my admin author name in WordPress Comments to the About page of the admin. Currently the code I am using links my post admin author name with the about page perfectly, however the comment admin author name still links to the homepage of the blog.
When I inspect the comment admin author name, I get the following details:
<span class="comment-author-link"><a href="/" class="url" rel="ugc">admin</a></span>
The code for linking the post admin author name with the about page is given below, it works perfectly well:
add_filter( 'author_link', 'my_author_link' );
function my_author_link() {
return home_url( 'about/' );
}
Any help will be greatly appreciated.
本文标签: redirectLink Wordpress Comment Admin Author name with About page
版权声明:本文标题:redirect - Link Wordpress Comment Admin Author name with About page 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736640611a1945985.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论