Extending Groups/Namespacing
-
Is it possible to extend Groups from functions.php?
I want to prevent users from being added to more than 1 group within a specific parent group, and am trying to extend the load_users() method, but I get a namespace error with the following line:
class TR_Groups_Admin_Users extends Groups_Admin_Users {
I’ve tried
use Groups_Admin_Users;
at the beginning of my file after the file namespace, but that doesn’t seem to work.Cheers!
- The topic ‘Extending Groups/Namespacing’ is closed to new replies.