Developers

Adding a Custom CMS Simulator

In this tutorial, you will learn how to simulate a custom CMS generator using the WP Ghost plugin in WordPress. This process helps to disguise your WordPress website by making it appear as a different CMS, such as Joomla or Drupal, or by using a custom generator name.

Set CMS Simulator in WP Ghost

  • First, activate WP Ghost in Safe Mode or Ghost Mode.
  • Click the Save button to apply the new paths.
  • From Emulate CMS, under the Safe Mode button, select one of the pre-defined options, such as Joomla or Drupal, from the dropdown.

Add a Custom Generator Name

If you want to use a custom generator name, follow these steps:

  1. Open your WordPress theme folder.
  2. Locate the functions.php file inside your theme directory (e.g., /wp-content/themes/your-theme/functions.php).
  3. Add the following code snippet at the end of the file:
add_filter('hmwp_emulate_cms', function(){
  return 'Custom Generator';
});
  1. Replace 'Custom Generator' with the name you want to display, e.g., 'Drupal' or 'MyCMS'.
  2. Save the file and upload it back to your server if necessary.
John Darrel

Change Database Prefix in WordPress

Because hackers often use bots to search for security flaws in your website, it is…

1 year

Customize WordPress Uploads Directory

The easiest way to change the default media uploads path is to use the WP…

1 year

WP Ghost and WP Rocket Cache

To hide all CSS and JS you need to follow the steps to Combine the…

1 year

Why is website security important?

https://youtu.be/6ylhojSi-_E In this video, we’ll explore why website security matters and what can happen if…

1 year

Is WordPress Website Easily Hacked?

The security of your WordPress site depends on multiple factors, such as the strength of…

1 year

Setting up Two-Factor Authentication (2FA) for WordPress Using Mobile Apps

When you enable two-factor authentication (2FA) for your WordPress website, it adds an extra layer…

1 year