在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; } |