Wordpress

How do I find a fast WordPress theme?

A significant number of themes that are available for WordPress is marketed as “fast themes”. However, depending on the amount of content you want to display per page, some …

Exactly how fast is my WordPress website?

How to identify problems? WordPress platform has provided an easy to use environment for creating beautiful websites, without having any coding knowledge. Unfortunately, this means that people who are …

How to Make WordPress Site Hack-Proof

How safe is your WordPress site? There have been a number of recent attacks made against the WordPress platform. These have raised considerable concern over whether it’s still capable …

How to Setup WordPress Cache – video

Mythemeshop,  has uploaded an excellent video for all WordPress beginners. The video is titled “How to Setup WordPress Cache” Mythemeshop has booth free and premium themes. And the best …

How to secure and speed up wordpress

  1. Choose a good host If you plan to run reliable wordpress website, managed WordPress hosting may be a good choice. Benefits of Managed WordPress Hosting Server is …

WordPress 3.9.2 Security Release

WordPress 3.9.2 is now accessible as a security release for all preceding variants. We encourage you to upgrade your websites instantly. This release fixes a potential denial of service …

WordPress 4.0 “Benny”

Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader Benny Goodman, is availableA for download or upgrade in your WordPress dashboard.A While 4.0 is simply …

How to Delete Existing WordPress Post Revisions

  To remove all existing post revisions entries from WordPress database Posts table, simply login to MySQL phpMyAdmin. Select the appropriate WordPress database, and then issue the following command: …

How to Add Default Content in WordPress Post

Open  WordPress theme’s functions.php file ( or child theme functions.php ) and paste the following code within the PHP tags. add_filter( 'default_content', 'my_editor_content' ); function my_editor_content( $content ) { …

WordPress Create Child Theme

A WordPress child theme is a theme that inherits the functionality of parent theme. Child theme allows you to modify, or add to the functionality of that parent theme. …

Protect wordpress wp-login with ModSecurity

Protect your wordpress installation (wp-login.php) against brute force attack with ModSecurity. Login to your WHM as root Install Modsecurity  if it isn’t installed Go to the “Plugins” section. Click on “Mod Security” …

How to disable wordpress wp-cron

Evidently there is a huge problem with wp-cron being spawned multiple times which will overload your server. DISBALE wp CRON in  wp-config.php: Open your wp-config.php Add next  code: define('DISABLE_WP_CRON', 'true'); …