Al_MF
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Paginate Custom Post Type Wp_QueryWell, it seems to be a problem with the permalinks, I had a custom permalink: /%postname%/ and after changing to default the “page/2” is working.
But I can’t have it working with the custom permalink.
EDIT: OK, after some search I found the solution myself.
http://wordpress.org/support/topic/pagination-with-custom-post-type-listing?replies=23#post-1637753
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.
Forum: Fixing WordPress
In reply to: Is this the advertising WordPress inserts?Maybe you have installed (without knowing) an AD extension / plugin for your Web browser.
It happened to me with firefox.
Forum: Fixing WordPress
In reply to: Two blogs on one site.. no MUYou could use Custom Post Types and Custom Page Templates for each “blog”.
Forum: Fixing WordPress
In reply to: Paginate Custom Post Type Wp_QueryThanks!, works great, but when I go to /page/2 I get a 404 error.