Add new user : make the fields First Name and Last name required

If you were looking to make the fields required in the WordPress admin form for adding new user as i understood from your question, where the output is not filterable, you could basically do what you described (adding form-required) on browser side function se372358_add_required_to_first_name_last_name(string $type) { if ( ‘add-new-user’ === $type ) { ?> <script … Read more

What’s the difference between the permissions “edit_published_posts” and “edit_posts”

The difference is that ‘edit_published_posts’ allows the user to edit posts whose status has been set to ‘published’, in other words, live content. The ‘edit_posts’ allows users to edit unpublished (e.g. draft) posts. For most bloggers, the distinction is irrelevant, but if you’re using WordPress for a company or a newsroom, you may want all … Read more

Permissions to wp-content folder in Windows Server 2012

There are actually 3 users that IIS access files with on .NET sites: IIS_IUSRS, IUSR, and NETWORK SERVICE Grant all 3 IIS users Read & Execute, List Folder Contents, Read permissions on the entire WP folder For file management (e.g. plugin/theme installation & updates), grant all 3 of the IIS users Full Control on the … Read more