So I am modifying the main query and basically asking:
if is_post_type_archive('event') {
This evaluates to true if the URL is:
http://localhost:8886/jeanmonnetprojects.au/event
But is false when I have a get parameter:
http://localhost:8886/jeanmonnetprojects.au/event?category=categoryX
I am sure this code was working before and now it's giving me false when I include the GET...any pointers are greatly appreciated.
So I am modifying the main query and basically asking:
if is_post_type_archive('event') {
This evaluates to true if the URL is:
http://localhost:8886/jeanmonnetprojects.au/event
But is false when I have a get parameter:
http://localhost:8886/jeanmonnetprojects.au/event?category=categoryX
I am sure this code was working before and now it's giving me false when I include the GET...any pointers are greatly appreciated.
Share Improve this question asked Aug 14, 2019 at 5:43 csaboriocsaborio 1122 silver badges13 bronze badges1 Answer
Reset to default 0My fault, I had defined the slug as 'events', hence I should have used:
http://localhost:8886/jeanmonnetprojects.au/events?category=categoryX