Opened 10 years ago
Closed 10 years ago
#29663 closed defect (bug) (fixed)
next_post_link & previous_post_link Category exclude broken
Reported by: | gabrieldiggs | Owned by: | nacin |
---|---|---|---|
Milestone: | 4.0.1 | Priority: | normal |
Severity: | normal | Version: | 4.0 |
Component: | Posts, Post Types | Keywords: | needs-testing reporter-feedback |
Focuses: | template | Cc: |
Description (last modified by )
Hello,
As of WordPress 4.0 my custom next_post_link & previous_post_link is broken. My code is as follows:
<?php next_post_link( '« %link', '%title', TRUE, '115' ); ?> | <?php previous_post_link( '%link »', '%title', TRUE, '115' ); ?>
WordPress now ignores the excluded category (115) part of the code and shows all post regardless of category when clicking the next or previous post links. Everything was working before the upgrade to 4.0
Attachments (1)
Change History (38)
#1
in reply to:
↑ description
@
10 years ago
#4
@
10 years ago
On a hunch I downloaded WordPress version 3.9.2 from the archive and
replaced the link-template.php from 4.0 with the version from 3.9.2. Sure
enough everything is back to normal on my site so the problem with
category exclusion is definitely due to changes made in link-template.php
from WordPress 3.9.2 to 4.0. I compared both files using File Merge on Mac
OS X and there are multiple differences between the two files. Should I
just keep the version from 3.9.2 or should I wait for a fix to WordPress
version 4.0?
#5
follow-up:
↓ 6
@
10 years ago
I put this line in one of my pages:
next_post_link( '%link', '%title', true, '3');
This page had categories 2 and 3. I went to the page using the same database using link-template.php from 3.9.2 and 4.0. I logged the mySQL queries for both. next_post_link() calls get_adjacent_post() where the database queries are made.
Here are the differences in the queries:
From 3.9.2
SELECT p.ID FROM wp_posts AS p INNER JOIN wp_term_relationships AS tr ON p.ID = tr.object_id INNER JOIN wp_term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id AND tt.taxonomy = 'category' AND tt.term_id IN (3,2) WHERE p.post_date > '2014-09-14 03:51:26' AND p.post_type = 'post' AND p.post_status = 'publish' ORDER BY p.post_date ASC LIMIT 1
From 4.0:
SELECT p.ID FROM wp_posts AS p INNER JOIN wp_term_relationships AS tr ON p.ID = tr.object_id INNER JOIN wp_term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE p.post_date > '2014-09-14 03:51:26' AND p.post_type = 'post' AND p.post_status = 'publish' AND tt.taxonomy = 'category' AND tt.term_id IN (2) AND p.ID NOT IN ( SELECT object_id FROM wp_term_relationships WHERE term_taxonomy_id IN (3) ) ORDER BY p.post_date ASC LIMIT 1
The queries reflect the change in the php code for both versions of link-template.php. I don't know exactly what's wrong in your case, but using both versions had worked fine with me.
#6
in reply to:
↑ 5
@
10 years ago
Replying to kaprice:
I put this line in one of my pages:
next_post_link( '%link', '%title', true, '3');This page had categories 2 and 3. I went to the page using the same database using link-template.php from 3.9.2 and 4.0. I logged the mySQL queries for both. next_post_link() calls get_adjacent_post() where the database queries are made.
Here are the differences in the queries:
From 3.9.2
SELECT p.ID FROM wp_posts AS p INNER JOIN wp_term_relationships AS tr ON p.ID = tr.object_id INNER JOIN wp_term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id AND tt.taxonomy = 'category' AND tt.term_id IN (3,2) WHERE p.post_date > '2014-09-14 03:51:26' AND p.post_type = 'post' AND p.post_status = 'publish' ORDER BY p.post_date ASC LIMIT 1From 4.0:
SELECT p.ID FROM wp_posts AS p INNER JOIN wp_term_relationships AS tr ON p.ID = tr.object_id INNER JOIN wp_term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE p.post_date > '2014-09-14 03:51:26' AND p.post_type = 'post' AND p.post_status = 'publish' AND tt.taxonomy = 'category' AND tt.term_id IN (2) AND p.ID NOT IN ( SELECT object_id FROM wp_term_relationships WHERE term_taxonomy_id IN (3) ) ORDER BY p.post_date ASC LIMIT 1The queries reflect the change in the php code for both versions of link-template.php. I don't know exactly what's wrong in your case, but using both versions had worked fine with me.
Thanks for taking a further look. According to FileMerge the major difference regarding get_next/previous_post_link & next/previous_post_link is for 3.9.2 it uses the parameter: $in_same_cat and for 4.0 it replaced all instances of that parameter with the parameter: $in_same_term
Perhaps that is what's wrong with my site. I'm not sure how to fix the problem beyond sticking to the 3.9.2 version. Any tips are much appreciated.
#7
@
10 years ago
I'm having the same problem. By doing the same than gabrieldiggs (replacing the link-template.php 4.0 to 3.9.2) the error/bug/whatever it is gets fixed.
#8
@
10 years ago
- Component changed from General to Posts, Post Types
- Focuses template added
- Milestone changed from Awaiting Review to 4.0.1
Diff between both tags: diff:tags/4.0/src/wp-includes/link-template.php//tags/3.9.2/src/wp-includes/link-template.php.
Moving to 4.0.1 for review.
This ticket was mentioned in IRC in #wordpress-dev by nacin. View the logs.
10 years ago
#11
follow-ups:
↓ 12
↓ 13
@
10 years ago
- Keywords reporter-feedback added
I am having a hard time reproducing this - the only way I could get it to break is if the default category is different than Uncategorized, Uncategorized is deleted, and the post has no category relationships (since category
is the default taxonomy) - the SQL will try to join on the taxonomy/post relationships, and if you didn't change the taxonomy, it will be category.
Can you please describe more about your setup:
- What is your default category?
- Does "Uncategorized" still exist?
- What term does
115
represent? - Is
115
present in the category taxonomy? - Do you have posts what that term as a category assigned to them?
#12
in reply to:
↑ 11
@
10 years ago
What is your default category?
Uncategorized (All categories unchecked by default in new posts)
Does "Uncategorized" still exist?
Yes
What term does 115 represent?
News (Category)
Is 115 present in the category taxonomy?
Yes (If taxonomy means category and tag lists)
Do you have posts with that term as a category assigned to them?
Yes (All posts are tagged with category 115 except posts in category 129 which are my radio show posts. Posts in category 115 may or may not have other categories as well. Posts in category 129 are only tagged with category 129 and nothing else.)
#13
in reply to:
↑ 11
@
10 years ago
- What is your default category?
Uncategorized
- Does "Uncategorized" still exist?
Yes
- What term does
115
represent?
In my case is 78
, the "to exclude" category named "poster"
- Is
78
present in the category taxonomy?
Yes
- Do you have posts what that term as a category assigned to them?
yes
--
Just in case I would like to add that in my case I have 3 categories that should show up while using the nav previous or next bar (Uncategorized, News and Design) so I'm using:
<?php previous_post_link( '%link', '%title', FALSE, '78' ); ?>
#14
follow-up:
↓ 15
@
10 years ago
- Version changed from 4.0 to trunk
hey guys, how are you?
I'd been running some test and I found out this:
On link-template.php
, line 1514
is if change this line from WP 4.0 file:
$where .= " AND p.ID NOT IN ( SELECT object_id FROM $wpdb->term_relationships WHERE term_taxonomy_id IN (" . implode( $excluded_terms, ',' ) . ') )';
to this one from WP 3.9.2 the exclude works great:
$where = $wpdb->prepare( " AND tt.taxonomy = %s AND tt.term_id NOT IN (" . implode( $excluded_terms, ',' ) . ')', $taxonomy );
I have no idea why but it works, I hope this could help you to find out what's happening with this.
Regards!
Pablo
PD: Sorry for my lame English.
#15
in reply to:
↑ 14
@
10 years ago
Replying to posterworld:
hey guys, how are you?
I'd been running some test and I found out this:
On
link-template.php
, line1514
is if change this line from WP 4.0 file:
$where .= " AND p.ID NOT IN ( SELECT object_id FROM $wpdb->term_relationships WHERE term_taxonomy_id IN (" . implode( $excluded_terms, ',' ) . ') )';
to this one from WP 3.9.2 the exclude works great:
$where = $wpdb->prepare( " AND tt.taxonomy = %s AND tt.term_id NOT IN (" . implode( $excluded_terms, ',' ) . ')', $taxonomy );
I have no idea why but it works, I hope this could help you to find out what's happening with this.
Regards!
Pablo
PD: Sorry for my lame English.
@posterworld
That modification to version 4.0 didn't work for me. I have to use the entire link-template.php file from version 3.9.2 in order for the excluded posts function to work. I'm waiting on an update from the WordPress developers to see how I should proceed.
This ticket was mentioned in IRC in #wordpress-dev by nacin1. View the logs.
10 years ago
This ticket was mentioned in IRC in #wordpress-dev by doc-bot. View the logs.
10 years ago
#19
@
10 years ago
So I have been writing some unit tests for this and getting mixed results. First I went to write a basic test using the defaults for get_previous_post_link and I would expect to get something like
« <a href="http://example.org/?p=12" rel="prev">Post title 2</a>
but instead I get an empty string(most of the time). Once in awhile running the same test I will get the correct return link. This is after creating 8 posts in setUp and checking based on a post in the middle.
#20
@
10 years ago
MikeHansenMe - Thanks for working on tests for this. It's a bit hard to say with certainty without seeing your tests, but based on your "most of the time" comment, I'm guessing it's that the posts you're creating all have the same post_date. Look at the internals of get_adjacent_post()
- they do a <
or >
check, and if the post_date is the same, it'll return nothing. When creating lots of items in a unit test, they'll usually have the same post_date, but sometimes won't if you happen to be spanning a second.
#21
@
10 years ago
@boonebgorges you nailed it. Creating separate posts with different dates gets the link to return in my tests. I will wrap up the basic ones here so we can build on them.
#23
@
10 years ago
- Owner changed from wonderboymusic to boonebgorges
- Status changed from assigned to accepted
This appears to be a problem related to shared terms. I'm guessing that gabrieldiggs also has a tag called 'News'. This would explain why wonderboymusic was unable to reproduce.
The problem was introduced in [29248] #22112. The excluded_terms
subquery was rewritten to use a subquery (which is correct) but checks against term_taxonomy_id
, when it should be checking against term_id
. On test installations with no shared terms (or in the unit tests, without some fiddling), term_id
and term_taxonomy_id
match, which is why no one noticed this problem during testing. Once those numbers are offset, the bug rears its head.
#25
@
10 years ago
- Keywords reporter-feedback removed
[30263] missed this ticket and fixes the bug for trunk.
#26
@
10 years ago
- Keywords fixed-major added
- Owner changed from boonebgorges to nacin
- Status changed from accepted to assigned
https://core.trac.wordpress.org/changeset/30263 applies cleanly and fixes the bug in 4.0. Ready to be merged.
#28
follow-up:
↓ 30
@
10 years ago
- Resolution set to fixed
- Status changed from assigned to closed
In 30405:
#29
@
10 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
Hi,
As of WordPress 4.0.1 the issue still exists regarding next_post_link & previous_post_link Category exclude being broken. My account was just auto-updated and the problem returned. Once again I downloaded WordPress 3.9.2 and replaced the link-template.php and the problem was solved. I'm going to keep a copy of the link-template.php from WordPress 3.9.2 on hand as a band aid until the issue is solved. If I can provide any input or data to aid in the process please let me know.
#30
in reply to:
↑ 28
@
10 years ago
Replying to nacin:
Thank you guys!, in my case this solved the problem.
Hope you can solve your problem soon gabrieldiggs.
Best regards
#32
@
10 years ago
- Keywords needs-testing added; fixed-major removed
- Milestone changed from 4.0.1 to 4.0.2
Seems like we have fixed #29565 but not this one. Moving milestone to 4.0.2.
#33
follow-up:
↓ 35
@
10 years ago
- Keywords reporter-feedback added
@gabrieldiggs: Does the issue still exists in WordPress 4.1 beta 2 (https://wordpress.org/wordpress-4.1-beta2.zip)?
#35
in reply to:
↑ 33
@
10 years ago
Replying to ocean90:
@gabrieldiggs: Does the issue still exists in WordPress 4.1 beta 2 (https://wordpress.org/wordpress-4.1-beta2.zip)?
Hi,
I unzipped the 4.1 beta 2 extracted the link-template.php file only and replaced the existing link-template.php file on my server under WordPress 4.0. I cleared the browser cache, refreshed my page and everything seems to be working. I'd feel more comfortable doing a full install via the dashboard as a manual full install via ftp seems a bit tedious. Will this become an official future release?
I tested to see if I can replicate this bug. I used a custom next_post_link, with an exclusion of a certain category. But the call to next_post_link worked just fine in 4.0 for me.
Before:
After:
Edit: I used modified content.php of the twentyfourteen theme this time, and added a call to next_post_link on line 62.
When you pass true as the third argument, next_post_link will check to see if the link is in the same taxonomy term as specified in the fifth argument ('category' by default). I was able to replicate the effect you described, but ostensibly it is not a bug.