mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-18 04:25:07 +00:00
Use capitalized ID column name in get_adjacent_post(). props hypertextranch. fixes #24575.
git-svn-id: http://core.svn.wordpress.org/trunk@24506 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2ebbe00b55
commit
642202c02a
@ -1175,7 +1175,7 @@ function get_adjacent_post( $in_same_cat = false, $excluded_categories = '', $pr
|
|||||||
$where = apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare("WHERE p.post_date $op %s AND p.post_type = %s AND p.post_status = 'publish' $posts_in_ex_cats_sql", $current_post_date, $post->post_type), $in_same_cat, $excluded_categories );
|
$where = apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare("WHERE p.post_date $op %s AND p.post_type = %s AND p.post_status = 'publish' $posts_in_ex_cats_sql", $current_post_date, $post->post_type), $in_same_cat, $excluded_categories );
|
||||||
$sort = apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1" );
|
$sort = apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1" );
|
||||||
|
|
||||||
$query = "SELECT p.id FROM $wpdb->posts AS p $join $where $sort";
|
$query = "SELECT p.ID FROM $wpdb->posts AS p $join $where $sort";
|
||||||
$query_key = 'adjacent_post_' . md5($query);
|
$query_key = 'adjacent_post_' . md5($query);
|
||||||
$result = wp_cache_get($query_key, 'counts');
|
$result = wp_cache_get($query_key, 'counts');
|
||||||
if ( false !== $result ) {
|
if ( false !== $result ) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user