gpt4 book ai didi

wordpress - 使get_adjacent_post()在自定义帖子类型中起作用

转载 作者:行者123 更新时间:2023-12-03 22:08:08 25 4
gpt4 key购买 nike

使用get_adjacent_postprevious_post_linknext_post_link似乎只能识别具有相同帖子类型的项目。由于我有2种自定义帖子类型,是否有一种方法可以在所有上一个和下一个帖子类型之间建立链接?

最佳答案

似乎这个问题已经在整个互联网上被问到,没有确定的答案。因此,我从原始的get_adjacent_post创建了自己的函数,并为需要它的其他人定制了它。

函数

将此放到您的functions.php中

/*
* Replacement for get_adjacent_post()
*
* This supports only the custom post types you identify and does not
* look at categories anymore. This allows you to go from one custom post type
* to another which was not possible with the default get_adjacent_post().
* Orig: wp-includes/link-template.php
*
* @param string $direction: Can be either 'prev' or 'next'
* @param multi $post_types: Can be a string or an array of strings
*/
function mod_get_adjacent_post($direction = 'prev', $post_types = 'post') {
global $post, $wpdb;

if(empty($post)) return NULL;
if(!$post_types) return NULL;

if(is_array($post_types)){
$txt = '';
for($i = 0; $i <= count($post_types) - 1; $i++){
$txt .= "'".$post_types[$i]."'";
if($i != count($post_types) - 1) $txt .= ', ';
}
$post_types = $txt;
}

$current_post_date = $post->post_date;

$join = '';
$in_same_cat = FALSE;
$excluded_categories = '';
$adjacent = $direction == 'prev' ? 'previous' : 'next';
$op = $direction == 'prev' ? '<' : '>';
$order = $direction == 'prev' ? 'DESC' : 'ASC';

$join = apply_filters( "get_{$adjacent}_post_join", $join, $in_same_cat, $excluded_categories );
$where = apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare("WHERE p.post_date $op %s AND p.post_type IN({$post_types}) AND p.post_status = 'publish'", $current_post_date), $in_same_cat, $excluded_categories );
$sort = apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1" );

$query = "SELECT p.* FROM $wpdb->posts AS p $join $where $sort";
$query_key = 'adjacent_post_' . md5($query);
$result = wp_cache_get($query_key, 'counts');
if ( false !== $result )
return $result;

$result = $wpdb->get_row("SELECT p.* FROM $wpdb->posts AS p $join $where $sort");
if ( null === $result )
$result = '';

wp_cache_set($query_key, $result, 'counts');
return $result;
}

用法

基本用途
// Custom post types can be array() or string
$post1 = mod_get_adjacent_post('prev', array('post', 'custom1', 'custom2'));
$post2 = mod_get_adjacent_post('next', 'custom2');

用于创建上一个/下一个链接
<?php
$prev = mod_get_adjacent_post('prev', array('post', 'custom1', 'custom2'));
$next = mod_get_adjacent_post('next', array('post', 'custom1', 'custom2'));
?>

<?php if($prev) : ?>
<a href="<?php echo get_permalink($prev->ID)?>">&laquo; Go back in time</a>
<?php endif; ?>

<?php if($next) : ?>
<a href="<?php echo get_permalink($next->ID)?>">Next: <?php echo $next->post_title; ?> &raquo;</a>
<?php endif; ?>

如果仍要包括变量 $in_same_cat$excluded_categories,则仍可以修改代码,但是如果这样做,我建议您改用 get_adjacent_post,因为这就是它的用途。

关于wordpress - 使get_adjacent_post()在自定义帖子类型中起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10376891/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com