• Get In Touch
October 8, 2013

5 More Security Tips for WordPress

Using Wordpress? Get our lightening fast Wordpress Optimised Hosting.
Get Wordpress Hosting
            As a WordPress user its important you stay on top of <span id="urn:enhancement-7cfdeea3-ee90-e6ed-0ce0-2b506055adb8" class="textannotation disambiguated wl-thing wl-no-link" itemid="http://data.wordlift.io/wl0226/entity/security">security</span> so your <span id="urn:enhancement-69cfc812-802a-55b8-35a2-9ada542e898c" class="textannotation disambiguated wl-thing wl-no-link" itemid="http://data.wordlift.io/wl0226/entity/website">website</span> runs smoothly. The goalposts for a secure WordPress website are constantly changing and its important you keep up to date with changes.

Having a pro active attitude towards security means you are less likely to get hacked, because we all know once they have gotten in, they are likely to target you again.

Here are 5 more security tips to secure WordPress

Limit Login Attempts

Install the plugin limit login attempts, this will stop people trying over and over to access your site. The limit login attempts plugin places a limit on failed attempts and then locks them out.

Login Error Message

By default WordPress tells the users what part of their login information is not right. if they have the right email but the password is wrong, WordPress currently tells the user this.

To change it login to WordPress and go to appearance > editor. In the right hand list of files find functions.php and add the following code:

function failed_login () {

    return 'the login information you have entered is incorrect.’
}
add_filter ('login_errors''failed_login' );

Turn off User Registration

By default anyone can register a user on your site, and with this user account if they find a way to escalate their privileges to admin it means they can take over your site. The best course of action is to block users from registering if you do not need them to.

To do this simply go to Settings > General and uncheck the ‘anyone can register’ check box. Also make sure you have selected subscriber as the New User Default Role as an extra precaution in case they find a way round this.

Finished with the design? Turn off access to file editors

Whilst handy when you are creating and finalising your site the file editors pose a risk. if someone gets into your dashboard they can instantly edit files and take over the sites look and feel so its best to stop them from editing files in the admin when you are finished with design, because after all you have FTP access to change any files in the future.

To do this login to WordPress and go to appearance > editor. In the right hand list of files find functions.php and add the following code:

define ('DISALLOW_FILE_EDIT', true );

Remove Your WordPress Version

Did you know with a few search queries a hacker can look at what version of WordPress you are running, find available hacks for that version and automatically apply them?! as standard google adds a WordPress version meta tag to your site and its best to remove this.

To fix this login to WordPress and go to appearance > editor. In the right hand list of files find functions.php and add the following code:

function remove_wp_version () {

    return '';
}
add_filter ('the_generator','remove_wp_version' );

Conclusion

The work listed above will take you around 5 minutes to deploy on your WordPress site and could save you hours of fixing a hack later on. Imagine your site going down in a peak rush to your site all because you didnt spend 5 minutes checking the security.

As ever if you need any help with the steps above, please contact us and we can help you.

Using Wordpress? Get our lightening fast Wordpress Optimised Hosting.
Get Wordpress Hosting

Share this Article!

Related Posts

5 Website Hosting Solution Trends for 2022 and Beyond

5 Website Hosting Solution Trends for 2022 and Beyond

Looking for the right web hosting solution for your website can be an intimidating task. Options nowadays are more diversified than ever, and each year brings new developments in the web hosting market. If you have no clue of what to look out for, you can find yourself overwhelmed with the choices. Hence, you must […]

64 Content Marketing Statistics Demonstrating the Power of Content

64 Content Marketing Statistics Demonstrating the Power of Content

Content marketing continues to be one of the most valuable tools for today’s online businesses. With content, you can improve your chances of reaching your target audience, boost your search engine standing, and even unlock new opportunities for sales. The more content you produce, the more you can strengthen your domain authority, demonstrate your thought […]

53 User Experience Stats for 2022

53 User Experience Stats for 2022

User Experience (UX) is one of the most crucial factors to consider in web design. As the number of websites and applications in the world today continues to accelerate, businesses are under more pressure than ever to impress customers straight away. If a user visits your website and finds slow-loading pages, clunky navigation, or errors, […]

How to increase the memory limit in WordPress

How to increase the memory limit in WordPress

Do you need to increase the memory limit in WordPress? Getting an error about memory Exhausted? The memory limit is one of the most common WordPress errors as the default limit of memory in WordPress is only set to 64mb! But there’s good news! The Memory Exhausted error is one of the easiest to fix […]

All in One WordPress Migration Vulnerability

All in One WordPress Migration Vulnerability

A vulnerability has been discovered in the “All In One WordPress Migration” WordPress plugin. All versions earlier than, and including 6.97 contain a vulnerability which allows Cross-Site Scripting (XSS). With over 2 million active installations, this vulnerability has the potential to be high impact, however, this is lessened by the nature of the vulnerability, which […]