You can still get all the users listed with their usernames and access levels
Yes, the idea of the post was to make it more difficult for the opportunist hacker.
Following on from point 3) above:
Login LockDown has not been updated for over 3 years, so there may be compatibility issues with current WP versions:
Code:
http://wordpress.org/extend/plugins/login-lockdown/
Here's an alternative which I've also used and is pretty popular: Limit Login Attempts
Code:
http://wordpress.org/extend/plugins/limit-login-attempts/
Adding to point 4): Installing WP manually
For those who don't know how to install WordPress manually, here's how...
A Create a Secure MySql Database and User
a) Log into your hosting and create a mysql database
> CPanel > MySQL Database Wizard > Login
b) Create a Database
- New Database: <sitename>_ [28 alphanumeric character name]
c) Create Database User
- Username: <sitename>_[7 alphanumeric character user name]
- Password: [27 character (include special characters) password]
d) Add User to the Database
- Privileges
> All
> Deselect 4 options: Index, Create Temporary Tables, Lock tables, References
- Make a note of: database and user, username's and password's.
B. Installing Wordpress Securely
> Download the latest version of wordpress from
http://wordpress.org/
In your hosting > CPanel > File Manager:
- Upload the zip file to the root and extract.
Select all files and move up one level.
Delete the wordpress install folder and zip file.
- Rename wp-config-sample.php to wp-config.php
- Select file: wpconfig.php:
> Select Code Editor
- Copy and paste the MySQL Database, user name and password fields into wp-config.php > 'database_name_here', 'username_here', 'password_here' fields.
- Goto
https://api.wordpress.org/secret-key/1.1/salt/
- Each time you refresh, it will create a new set.
> Select All and copy
> Goto wp-config.php
> 'Authentication Unique Keys and Salts.' section
(- contains a random set of keys, and is used to encrypt WP info, e.g. logging in)
> Paste over the existing (8) fields (AUTH_KEY to NONCE_SALT).
> Goto 'table_prefix' section:
> Generate a 27 character alphanumeric field
> Paste into 'wp_ prefix' field. Add underscore at end.
> Code Editor > Save Changes
> Exit File Manager
C. Setting WordPress Login Info
> Goto:
http://www.mydomain.com/wp-admin/install.php
> Site Title: [XXX] e.g. My Money Site
> Username: [27 character alphanumeric username]
> Password: [27 character alphanumeric password (can have special characters)]
> Install WP