php 按ID将相邻的帖子导航添加到特定类别的帖子。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 按ID将相邻的帖子导航添加到特定类别的帖子。相关的知识,希望对你有一定的参考价值。

<?php

// Remove adjacent post nav.
add_action( 'after_setup_theme', function(){
	remove_post_type_support( 'post', 'genesis-adjacent-entry-nav' );
});

/**
 * Add adjacent post navigation to posts
 * in a specific category, by ID.
 */
add_action( 'wp_head', function() {
	// Bail if not a single post.
	if ( ! is_singular( 'post' ) ) {
		return;
	}
	// Bail if not in category with ID of 123
	if ( ! has_term( 123, 'category' ) ) {
		return;
	}
	// Add adjacent post nav.
	add_post_type_support( 'post', 'genesis-adjacent-entry-nav' );
});

以上是关于php 按ID将相邻的帖子导航添加到特定类别的帖子。的主要内容,如果未能解决你的问题,请参考以下文章

使用 PHP 按类别过滤帖子

在 Wordpress Datewise 中为特定类别创建存档

php 来自帖子类型的特定类别帖子的帖子

从 WordPress 中的特定类别获取置顶帖子

php 按类别自定义帖子类型的相关帖子

使用 ajax 通过 WordPress 菜单在 div 中按类别加载最新帖子