欢迎光临
我们一直在努力

WordPress 后台用户列表添加更多操作功能

建站超值云服务器,限时71元/月

在WordPress后台用户列表,管理员可以编辑和删除用户,如果你想添加更多的操作,比如你的网站有站内信,你可以添加一个快捷发送站内信的链接。下面我们来添加一个访问用户网址的链接:

WordPress 后台用户列表添加更多操作功能

如果用户注册时填写了网址,那就添加一个“访问网站”链接,将下面的代码添加到主题的 functions.php:

1
2
3
4
5
6
7
8
9
10
11
/**
 * WordPress 后台用户列表添加更多操作功能
 * https://www.wpdaxue.com/user-row-actions.html
 */
add_filter( 'user_row_actions', 'wpdaxue_user_row_actions', 10, 2 );
function wpdaxue_user_row_actions( $actions, $user_object ) {
	if($user_object->user_url) { // 如果存在网址
		$actions['website'] = '<a href="'.$user_object->user_url.'" target="_blank">访问网站</a>';
	}
	return $actions;
}

/** * WordPress 后台用户列表添加更多操作功能 * https://www.wpdaxue.com/user-row-actions.html */ add_filter( ‘user_row_actions’, ‘wpdaxue_user_row_actions’, 10, 2 ); function wpdaxue_user_row_actions( $actions, $user_object ) { if($user_object->user_url) { // 如果存在网址 $actions[‘website’] = ‘<a href=”‘.$user_object->user_url.'” target=”_blank”>访问网站</a>’; } return $actions; }

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » WordPress 后台用户列表添加更多操作功能
分享到: 更多 (0)