Completely secure WordPress website | Infoconic

Your email address will not be published. Required fields are marked *


Secure wordpress website – Complete guide

1 Use your email as login username

2 Always Choose a strong password

3 Always Change the WordPress database table prefix

4 Try to Cut Back Plugin Use

5 Limit your WP login attempts

6 Hide WordPress error Hint on failed login attempts

7 Customize WordPress wp-login/wp-admin URL

8 Hide WordPress version Meta tag

9 Remove WordPress version in Query Strings “?ver=” and “&ver”

Conclusion

Read latest Technology News & never miss out

Something To Say ?

Categories
Recent Posts

<?php // skip this php open tag
function no_wordpress_errors(){
  return 'GET OFF MY LAWN !!';
}
add_filter( 'login_errors', 'no_wordpress_errors' );
?> // skip this php close tag

<?php // skip this php open tag
remove_action('wp_head', 'wp_generator');
?> // skip this php close tag

<?php // skip this php open tag
function wpbeginner_remove_version() {
return '';
}
add_filter('the_generator', 'wpbeginner_remove_version');
?> // skip this php close tag

<?php // skip this php open tag
/* function for removing query string from url. means remove &ver ?ver from URL*/
function _remove_query_strings_1( $src ){	
	$rqs = explode( '?ver', $src );
        return $rqs[0];
}
if ( is_admin() ) {
// Remove query strings from static resources disabled in admin
}
else {
add_filter( 'script_loader_src', '_remove_query_strings_1', 15, 1 );
add_filter( 'style_loader_src', '_remove_query_strings_1', 15, 1 );
}

function _remove_query_strings_2( $src ){
	$rqsver = explode( '&ver', $src );
        return $rqsver[0];
}
if ( is_admin() ) {
// Remove query strings from static resources disabled in admin
}
else {
add_filter( 'script_loader_src', '_remove_query_strings_2', 15, 1 );
add_filter( 'style_loader_src', '_remove_query_strings_2', 15, 1 );
}
?> // skip this php close tag

adminwp_wp_wordrpess_ , mywp_ , mysite_wp_wp-login.phpfunctions.phpfunctions.phpfunctions.phpPreviousNextWP limit login attemptsWP hide loginSecurityWordPressJun 20170up
2
down
0
, **

We all know WordPress is very user friendly & good Content Management System(C.M.S) to manage blogs & personal websites. Recently, WordPress turned out itself as global website development platform and its more than a CMS nowadays. WordPress supports everything from eCommerce to social networking functionalities.
74.6 Million websites depend on WordPress & WordPress security has always been a Discussion. WordPress is an open source script and by default its less secured. Some extra layer implementation is necessary to secure WordPress platform.
So the question comes Arises, how do you secure your WordPress website ?
Below are some Good tips & tricks by which you can Secure your Word-press website.

By default, we input username to log-in WordPress. If we use an email ID instead of a username then its a more secured way. The reason is very simple. Usernames are easy to Guess, while email IDs are not easy to predict.

Scroll to Top