You can do it with CSS. Which link would you like to hide? I can provide you with the code.
]]>Hi, please try this:
// Hide admin bar from subscribers
add_action(‘after_setup_theme’, ‘pfwp_remove_admin_bar’);
function pfwp_remove_admin_bar() {
$display_bar = array(‘administrator’, ‘author’, ‘editor’);
if( !array_intersect($display_bar, (array) wp_get_current_user()->roles ) ) {
show_admin_bar(false);
}
}