Why is “/page/2/” not working?

Found the answer:

After a looong day debugging thru wordpress core, I managed to solve
this issue.

Basicly, you CANT have a PAGE and a CUSTOM POST TYPE with the same
name. If you do, the permalink rewrite rules will get confused and
trigger a 404.

A very simple solution I’m using is: The page that lists the custom
post types is called in plural (eg. products) and the actual post type
name is in singular (eg. product). So they dont conflict and it’s all
fine.

Done Done! Hope this will save people’s time.

Leave a Comment