Debugging WordPress redirects, encrypting options and inspecting metadata


Hey Reader, here are a few highlights and ideas I’ve been sharing lately around WordPress development and security.

🔍 Debugging WordPress Redirects

Ever seen a WordPress redirect and had no clue where it’s coming from? I wrote a guide on how redirects work and the tools you can use to track them down, including a must-use plugin I built to log redirect sources with PHP backtraces. Did you know that Query Monitor adds an HTTP header with backtrace info for some redirects?

🔐 Encrypting WordPress Options & Meta

Ever felt hesitant about storing API keys and other secrets in WP options? I've been working on a PHP library to enable encryption of WordPress options and meta values using symmetrical keys stored in constants, environment variables and PHP files (similar to *.asset.php files).

The eventual goal is to get the underlying API into WordPress core so I'm building a commercial plugin with an interface for encrypting existing options (without any changes to the plugin using the option value). With a standardized API in core, plugins would be able to opt-in for encrypted storage of specific options through a single filter.

One of the biggest challenges when running this as a plugin is to ensure that the decrypt logic runs before any of the plugins attempt to use the encrypted option. For now I've added an activation logic that places a must-use loader plugin that include_once the main plugin, making it run before all other plugins (hopefully).

🧪 Post Meta Inspector for the Block Editor

Ever wanted inspect post meta values but without relying on legacy meta boxes? I’ve been experimenting with a block-based post meta inspector that integrates directly into the editor UI inside


What are you experimenting with in your WordPress work right now? Hit reply and share -- I’d love to hear about it.

Until next time,
Kaspars

Subscribe to WP Elevator

Read more from Subscribe to WP Elevator

Hey Reader! I’ve been diving deep into some exciting WordPress topics over the past month, and I wanted to share some key insights and updates with you. 🏹 Better search with AI embeddings in WordPress Curious about AI embeddings in WordPress? I put together a guide explaining how they can power better search results and retrieval-augmented generation (RAG) systems. If you’re looking to enhance search functionalities in WP, this is worth checking out! (Tweet) Illustration of the content...

Hey Reader! I hope you had a wonderful holiday season and are ready for an exciting year ahead. While publishing an update to the Native SSO plugin (still in development), I decided to record a video of the process in case you might find it useful. In the video, I demonstrate a GitHub workflow that: Prompts for a version to tag for release, Extracts the plugin directory from the monorepo using git subtree, Automatically generates the changelog, and Tags a version release in the distribution...

Hey Reader! On Monday I posted a few tweets, toots and threads that could be interesting to you as a developer. Below is a summary of them: After hearing about the ACF "fork" (more like takeover) due to an unresolved security issue, I immediately went looking at the changesets to find the actual issue (what could be so critical?). Turns out (see the Twitter thread) ACF now allows you to register custom post types and taxonomies from the WP admin and one of the settings to configure is the...