Why do so many people use Google Fonts?

Google Fonts was first launched in 2010 and is an open source tool offering a variety of different font styles and icons that users can choose from. Google Fonts offers more than 1,000 free font styles and icons that can be used for both commercial and non-commercial purposes. If you use a font (or script) that is … 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

GeneratePress vs Astra vs Default Theme

GeneratePress GeneratePress doesn’t offer starter sites in its free version (but does with the premium version). Additionally, it doesn’t offer any backend dashboard settings in the free version. So when you install the free theme, your first step is to jump right into the native WordPress Customizer: Astra Astra offers starter sites even with its … Read more

WordPress creates image size variants based on resizing images on posts?

How to Dynamically Resize WordPress Image On-The-Fly On View without creating additional file? How to resize WordPress images on upload to specific height and width without cropping it? I need the image to be “contained”. When a user uploads an image, WordPress will generate as many images as you’ve declared with add_image_size(). There is one … Read more

Disable WordPress from generating image variants

How many image variants WordPress secretly generates? Depending on the size of the image that is uploaded, images with sizes of 768px, 1536px, 2048px and 2560px (maximum size) may also be created to be used with the scrset HTML attribute. You may think that unchecking box of creating images variant sizes in the WordPress admin … Read more