手机
当前位置:查字典教程网 >CMS教程 >WordPress >wordpress评论者链接在新窗口中打开的方法
wordpress评论者链接在新窗口中打开的方法
摘要:找到wp-includes/comment-template.php文件中if(empty($url)||'http://'==$url)$...

找到wp-includes/comment-template.php文件中

if ( empty( $url ) || 'http://' == $url )

$return = $author;

else

$return = "<a href='$url' rel='external nofollow'>$author</a>";

return apply_filters('get_comment_author_link', $return);

}

给$return值上加个target=’_blank’

if ( empty( $url ) || 'http://' == $url )

$return = $author;

else

$return = "<a href='$url' rel='external nofollow' target='_blank'>$author</a>";

return apply_filters('get_comment_author_link', $return);

}

【wordpress评论者链接在新窗口中打开的方法】相关文章:

WordPress文章ID不连续的解决方法

wordpress wp_list_categories(分类的链接列表)的使用方法

wordpress 显示文章日期的方法

wordpress中文截断产生乱码解决方法

wordpress后台中的侧边栏添加菜单或子菜单的方法

wordpress获取某个栏目链接地址的方法

wordpress发布时链接地址依然指向本地而不是域名解决方法

wordpress回复评论文字的修改方法

wordpress评论有时出现(匿名)的现象解决方案

wordpress制作自定义菜单的方法

精品推荐
分类导航