Please enable JavaScript.
Coggle requires JavaScript to display documents.
WordPress, All In One WP Security, Remove URLs whith Google Console -…
WordPress
Sec
-
-
Disable Auto Update
wp-config
-
define( 'WP_AUTO_UPDATE_CORE', false);
LImit Access
.htaccess
-
<File #>
order allow,deny
deny from all
</File>
-
-
Hide Wordpress Version
functions.php
remove_action('wp_head', 'wp_generator');
function failed_login () {
return 'نام کاربری یا رمز عبور اشتباه است';}
add_filter ('login_errors', 'failed_login');
-
-
-
-
-
-
-