Remove “Edit” link in reply header for certain roles
-
Hi, I’m using the codes below to remove “Edit” link in reply header without any issue:
add_filter ('bbp_reply_admin_links', 'rew_remove_edit') ; add_filter ('bbp_topic_admin_links', 'rew_remove_edit') ; function rew_remove_edit ($links) { unset ($links['edit']) ; return $links ; }
My question: If I want the codes to work only for Role A & Role B, but NOT for other roles, how would I amend the code above?
Regards.
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- You must be logged in to reply to this topic.