Changes

Jump to navigation Jump to search
744 bytes added ,  12:58, 20 April 2012
no edit summary
==Wordpress Customize==

Security Tip: Reduce the count of Wordpress Plugins, do never use PHP Upload Plugins like "Gallery" cause most of them are scanned by hackers to access the file systems of the Webserver !!!

to remove date of posts edit functions.php
<pre>
function theme_remove_post_dates() {
add_filter('the_date', '__return_false');
add_filter('the_time', '__return_false');
add_filter('the_modified_date', '__return_false');
} add_action('loop_start', 'theme_remove_post_dates');
</pre>

force ssl login to wp-admin.php add to wp-config.php and block port 443 to public access (iptables firewall)
<pre>
define('FORCE_SSL_ADMIN', true);
</pre>
delete trash add to wp-config.php
<pre>
define('EMPTY_TRASH_DAYS', 0);
</pre>

Navigation menu