Cedrass
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom post archive and pagination not workingTo anyone who might find this topic in the future, searching for an answer, I fixed my problem. This post was what gave me the solution.
Hopefully WP will fix this bug in a next version!
Forum: Fixing WordPress
In reply to: Custom post archive and pagination not workingTwo new things I tried:
Putting this “die(print_r(“====”.$paged, true ));” right after I set the $paged variable, to see if I at least reached it in my second page. I got “====1” on my first page (which is what I intended), but the second page didn’t show anything. It went to the “Page not found” page. I’m not really sure what that behavior means. Is WordPress ignoring my archive-articles.php page because of the &paged=2 argument?
Also, instead of
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;"
I set it to 2
$paged = (get_query_var('paged')) ? get_query_var('paged') : 2;
And surprise, it did show me what should be the second page.I’m really not getting why this isn’t working…
Forum: Fixing WordPress
In reply to: Plugin admin page not workingAlright, didn’t know this. Thank you.
Forum: Fixing WordPress
In reply to: Plugin admin page not workingI would, but Revolution Slider does not have one. And I don’t yet understand well enough how WordPress works to figure out what the problem is…