Jack of All Trades, Master of None….?

“Jack of all trades, master of none, but oftentimes better than a master of one.” Why aren’t we told the full quotes and sentences?  The original version, “a jack of all trades”, is often used as a compliment for a person who is good at fixing things and has a good level of broad knowledge. … 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

What is WordPress image srcset?

Since WordPress 4.4 release of December 2015, native responsive images is supported by srcset and sizes attributes. By adding srcset attributes for responsive images, it allows browsers to choose the most appropriate image size based on the user’s device. WordPress automatically creates several sizes of each image uploaded to the media library. WordPress Core includes … Read more