欢迎光临
我们一直在努力

WordPress 首页排除某些文章形式(Post Formats)

建站超值云服务器,限时71元/月

WordPress 3.1引入了 文章形式(Post Formats),它是文章的一种属性,可以被主题用来决定文章的显示方式。简单地说,如果你使用的主题支持“文章形式”(也就是主题作者已经为不同的文章形式定制了不同的显示样式),你就可以从一个单选列表中选择文章的形式,以此决定文章的显示样式。

WordPress 首页排除某些文章形式(Post Formats)

关于 文章形式,在以后的教程中,倡萌会继续补充,今天分享下 WordPress 首页排除某些文章形式的方法,将下面的代码添加到主题的 functions.php 即可:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * WordPress 首页排除某些文章形式(Post Formats)
 * https://www.wpdaxue.com/exclude-post-formats-from-homepage.html
 */
function exclude_post_formats_from_homepage( $query ) {
	if( $query->is_main_query() && $query->is_home() ) { //判断首页主查询
		$tax_query = array( array( 
			'taxonomy' => 'post_format',
			'field' => 'slug',
			'terms' => array(
				//请根据需要保留要排除的文章形式
				'post-format-aside',
				'post-format-audio',
				'post-format-chat',
				'post-format-gallery',
				'post-format-image',
				'post-format-link',
				'post-format-quote',
				'post-format-status',
				'post-format-video'
				),
			'operator' => 'NOT IN',
			) );
		$query->set( 'tax_query', $tax_query );
	}
}
add_action( 'pre_get_posts', 'exclude_post_formats_from_homepage' );

/** * WordPress 首页排除某些文章形式(Post Formats) * https://www.wpdaxue.com/exclude-post-formats-from-homepage.html */ function exclude_post_formats_from_homepage( $query ) { if( $query->is_main_query() && $query->is_home() ) { //判断首页主查询 $tax_query = array( array( ‘taxonomy’ => ‘post_format’, ‘field’ => ‘slug’, ‘terms’ => array( //请根据需要保留要排除的文章形式 ‘post-format-aside’, ‘post-format-audio’, ‘post-format-chat’, ‘post-format-gallery’, ‘post-format-image’, ‘post-format-link’, ‘post-format-quote’, ‘post-format-status’, ‘post-format-video’ ), ‘operator’ => ‘NOT IN’, ) ); $query->set( ‘tax_query’, $tax_query ); } } add_action( ‘pre_get_posts’, ‘exclude_post_formats_from_homepage’ );

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » WordPress 首页排除某些文章形式(Post Formats)
分享到: 更多 (0)