Code Monkey home page Code Monkey logo

Comments (2)

gmazzap avatar gmazzap commented on August 11, 2024

Hi @boneus

You did not miss anything.

Adding a QueryRoute means that when the URL you define is matched, WordPress will use the query arguments you define.

Adding a template property to a route (directly or via a group does not really change) means that Cortex will add a filter to template_include, which is a filter that is fired for all requests, including 404.

So what you described is the expected behavior:

  1. your URL matches
  2. the query is performed as required
  3. the template_include filter is added as required
  4. your template includes some body_class() call in it, which because the query was 404, includes error404.

What you want is to "filter the template only if not 404". which is not something that Cortex can do out of the box.

But you have at least two different possibilities to obtain that result.

The first and probably simplest way is to change your archive-cpts.php to contain on top of it something like this:

<?php
if (is_404()) {
    locate_template(['404.php', 'index.php'], true);
    return;
}

// rest of template here

This way when your template is loaded, in the case of a 404 request, it will look for a 404.php template in the child theme if any, and then in theme, and if not found it will fall back to index.php as WordPress would do.

An alternative would be to remove the filter added by Cortex when is a 404.

You can do that quite easily, because for 404 requests WordPress will trigger the 404_template filter so you could do:

add_filter('404_template', function () {
  remove_all_filters('404_template');     // Cortex adds a filter here as well
  remove_all_filters('template_include');
}, 1); // act early, before Cortex

I've not tested this, but I expect it to work.

from cortex.

boneus avatar boneus commented on August 11, 2024

Thank you for the explanation.
I've actually already implemented something similar to the second approach but I wasn't sure if it's the right one :)

from cortex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.