What is (index) in WordPress wp-content directory?

What is index.php in WordPress wp-content directory? Go to your website URL : You will see a blank page. That’s actually is the index.php, and its content is very simple. It is a commented out PHP comment: Remove the file and visit the URL again. You will see the file structure completely. So your file structure … Read more

Remove Version from Stylesheet and JS Script in WordPress

Remove Version from Stylesheet Many CSS files have the WordPress version number appended to their source, for cache purposes. Knowing the version number allows hackers to exploit known vulnerabilities. Remove Version from JS Script Many JS files have the WordPress version number appended to their source, for cache purposes. Knowing the version number allows hackers … Read more

How to Hide Login Page in WordPress

WPS Hide Login WPS Hide Login is a very light plugin that lets you easily and safely change the url of the login form page to anything you want. It doesn’t literally rename or change files in core, nor does it add rewrite rules. It simply intercepts page requests and works on any WordPress website. The … Read more

What is jQuery in WP includes?

What is wp-includes jquery.min.js? What is wp-includes jquery-migrate.js? What is jQuery? How to Use jQuery in WordPress? What is calling jquery? I just cannot figure out what is calling two jquery scripts in my theme. Even if I turn off all plugins, they’re still being called. I have not enqueued them in my function.php and … Read more

How to create a Child Theme on WordPress

Child Themes A child theme includes everything from its parent theme by default. This includes the design and any of its functionality. But it can also be used to make customizations to the parent theme without directly modifying the parent theme’s files. This means that you (or your child theme’s users) can still receive updates … Read more

WordPress Block Editor Full Site Editing (FSE)

WordPress themes that support full site editing (FSE) don’t include a theme customizer option in the admin panel. Instead, you will see a new ‘Editor’ option under the Appearance menu. What Happened to the Theme Customizer in WordPress Admin? With WordPress releasing the new full site editor, many themes no longer show the theme customizer … Read more

Adding PHP

This is how unforgiving PHP is, if there’s an error in the code, your site can turn into a blank white page. To fix this, simply go into your server and delete the code you added. Access to your server via FTP or File Manager (through your hosting control panel). Apache’s .htaccess files allow per-directory … Read more

How to get rid of block-library/style.min.css?

How to Absolutely Remove WordPress Gutenberg / Block Editor External CSS and Javascript Files? By default the Gutenberg Block Editor loads its default CSS/stylesheet on the front-end of your WordPress site.  <link rel=”stylesheet” id=”wp-block-navigation-css” href=”https://yourdomain.com/wp-includes/blocks/navigation/style.min.css?ver=6.8.1″ media=”all”> <link rel=”stylesheet” id=”wp-block-image-css” href=”https://yourdomain.com/wp-includes/blocks/image/style.min.css?ver=6.8.1″ media=”all”> It’s a core style sheet for the core block styles. Remove Gutenberg CSS Library … Read more