Add settings link under plugin name

When creating a custom plugin, you may want to add a custom link to the setting page. That way, the…
Date
December 14, 2021
Posted by

How to modify the Gutenberg blocks from post content with PHP

Modify the post content generated by Gutenberg by parsing the blocks with PHP and serializing the modified array back to…
Date
February 6, 2023
Posted by

Modify CPT arguments after it was registered

When registering a new custom post type it’s easy to pass the arguments to the register_post_type function directly. It can’t…
Date
December 1, 2021
Posted by

CSS Box Shadow Generator in 2022

Generating CSS3 multilayer box-shadow has never been easier. Now with Box Shadow Generator you can create, edit and find inspiration…
Date
January 15, 2022
Posted by

Effective URL validation in PHP with regex

URL validation is a hard thing to do. There are so many variations that it is nearly impossible to predict…
Date
December 1, 2021
Posted by

What is ternary operator and how to use it?

The ternary operator is a short replacement for the if and else statement. It allows writing the condition elegantly in…
Date
December 1, 2021
Posted by

Quick fix for jQuery “Uncaught TypeError: $ is not a function” in WordPress

jQuery is an old library used on millions of websites. Likewise, WordPress used and still uses it extensively in plugins…
Date
March 7, 2022
Posted by

wp_parse_args recursive of multidimensional arrays

wp_parse_args is a wonderful function for combining two arrays, objects, or strings in WordPress. But it lacks the possibility to…
Date
August 24, 2021
Posted by

Disable REST API for non-logged users in WordPress

Disable REST API without using a plugin. Add the following code to the functions.php file in your theme or in…
Date
December 1, 2021
Posted by

Disable WordPress XML-RPC in NGINX

Locate your nginx configuration file and add the following rule in there. Save it and reload the nginx service. Now…
Date
December 1, 2021
Posted by