我希望从我的页面中删除作者指向其原始网站的链接
我知道这是在任何一个函数中。php或注释。php文件。
我不确定如何编辑这些php文件,
我在网上遇到一些代码,它们基本上说明我必须插入以下内容。但我不确定在哪里插入花括号或普通括号等,以便实现代码行,以及在这种情况下使用哪个括号。
请帮忙。我对Wordpress还不到一周大。所以正在编辑。php文件有点让人望而生畏,但我希望学习如何成功地做到这一点。
网站是www.nouvida。我希望评论作者的链接不要连接到原始主题的主页。。
add_filter( \'get_comment_author_link\', \'remove_html_link_tag_from_comment_author_link\' );
function remove_html_link_tag_from_comment_author_link ( $link ) {
if( !in_the_loop() ) {
$link = preg_replace(\'/<a href=[\\",\\\'](.*?)[\\",\\\']>(.*?)<\\/a>/\', "\\\\2", $link);
}
return $link;
}
SO网友:Charles
在中添加以下代码段functions.php
. (在您的theme
文件夹)
Edit new code:
-这应该可以了,抱歉耽搁了
/**
* Remove post author link on comments
*
* @return string $author
*/
function wpse218025_remove_comment_author_link( $return, $author, $comment_ID ) {
return $author;
}
add_filter( \'get_comment_author_link\', \'wpse218025_remove_comment_author_link\', 10, 3 );
注意:您可以添加
functions
几乎总是对你的
functions.php
在您的
theme
文件夹当然,也可以制作插件,但这需要更多的编码
请看一下
here 制作自己的插件。