Categories
PHP Tutorials Wordpress Tutorials

Add custom menu, Add theme locations & register new menu

A WordPress developers guide / tutorial – for adding custom menu in new wordpress theme, add one or multiple new theme locations for the custom WordPress menus, so that menu can appear in those places. Register new menu items. Enable your new wordpress theme to add custom user defined nav menus from the admin dashboard.

Categories
Linux

Ubuntu : Add user to a new group, existing group, group creation

To add a user to an existing group:

$ sudo adduser <USERNAME> <GROUPNAME>

To make a new group:

$ sudo addgroup <GROUPNAME>

See Which Groups Your Linux User Belongs To

$ groups <username>

If you don’t enter a username, it defaults to your own username. For instance:

$ groups

Remove a user from an existing group in Ubuntu

$ deluser <username> <groupname>