close

Remove “Line indent” and “Fit text” in WordPress 7.0

Published: Leave a comment

In WordPress 7.0, two new typography settings arrived within the block editor to set a line indentation and use the “Fit text” feature. The latter already has been part of WordPress 6.9 as block style. For me, such settings are usually not necessary for most people. Thus I show you how you can remove them in your theme.

Continue reading Remove “Line indent” and “Fit text” in WordPress 7.0

PHP performance debugging tools for WordPress

Published: 2 Comments

When it comes to performance debugging, there are a wide variety of tools available. The last years, I searched for one that is actually easily usable and provides easy access in identifying bottlenecks.

There are some that are specific to WordPress, e.g. as plugins, some allow general performance debugging via PHP and some require a PHP extension to be loaded. I’ll cover all of these types in the following article.

Continue reading PHP performance debugging tools for WordPress

(Temporarily) Disable a shortcode in WordPress

Published: Leave a comment

When I was working on schema data, I got an issue where a shortcode was executed within that data, which was not desired. So I looked for a way to disable this particular shortcode temporarily. I didn’t want to disable all shortcodes, which would have been easier by just removing the do_shortcode function within my code, because I was dependent on other shortcodes.

Continue reading (Temporarily) Disable a shortcode in WordPress