Changing Theme produced a problem on some pages

The error message you’re encountering in WordPress suggests a notice-level issue in the code, specifically in the exclude_pages.php file of the ‘Exclude Pages’ plugin. This issue seems to be related to PHP’s handling of variables and references. Here’s how you can address it: Understand the Error: The notice is indicating that a variable is being … Read more

Override categories with Pages (block theme)

In your scenario, where you want to override an auto-generated category page with a manually-created Page in WordPress, especially when using block themes, the challenge arises because block themes use a different file structure compared to classic themes. They rely on HTML templates and theme.json instead of the traditional PHP templates. Here’s a more elegant … Read more