WPSandbox

Xdebug Var Dump Settings

How to Prevent xDebug from Truncating var_dump() Output

xdebug is an awesome debugging extension and it has saved me so much time when developing and also when troubleshooting php scripts and WordPress plugins. When you’re working with xdebug in your PHP development environment and using functions like var_dump() to output some debugging data (logging is better but sometimes you have to do it),

How to Prevent xDebug from Truncating var_dump() Output Read More »

WP Security Padlocks

What PHP functions to disable to secure your WordPress server

Why disable certain PHP functions When securing a PHP server, it’s critical to disable some functions that allow attackers to execute harmful commands or scripts. PHP Functions like exec, system, and shell_exec are used to execute external commands which poses a security risk. This could be called by a script you uploaded or by a

What PHP functions to disable to secure your WordPress server Read More »

How to Fix WordPress Multisite Redirect Loop Network Admin

So you’ve decided to try WordPress Multisite?Awesome! WordPress Multisite has its uses even though many people don’t usually recommend it.It is probably because not many WordPress plugins are compatible with it. You can use WordPress multisite for different subsections of the site. e.g. support, help, developer docs etc. i.e. everything that’s related to a product

How to Fix WordPress Multisite Redirect Loop Network Admin Read More »

How to Programmatically Modify Meta Title if using RankMath WordPress Plugin

Normally to modify the WordPress pages’ meta title you can use the following filter.doc ref: https://developer.wordpress.org/reference/hooks/the_title/ the callback will receive $post_title, $post_id as arguments. If you’re using RankMath for your SEO stuff you need to use this filter: rank_math/frontend/title to modify the meta title. I didn’t have the time to fully investigate why that’s the

How to Programmatically Modify Meta Title if using RankMath WordPress Plugin Read More »

How to Edit a Slug/Link/Permalink of a Custom Post Type in WordPress

So you’ve created a cool custom post type in WordPress but can’t find a way to edit its slug/link/permalink? Editing the slug is not that obvious for a custom post types. We know. WordPress shows the default/classic WordPress editor and not the block editor for custom post types. So you’ve added a custom post type

How to Edit a Slug/Link/Permalink of a Custom Post Type in WordPress Read More »