首页 > WordPress学习 > WordPress如何调用相同文章形式的文章

WordPress如何调用相同文章形式的文章

时间:2022年5月6日 分类:WordPress学习 浏览量:157

wordpress相关文章调用相同文章形式内容,通过get_posts()函数可以实现这个功能需求

<?php 
	$posts = get_posts(array(
		'numberposts' => '10',
		'post_type' => 'post',
		'exclude'=>get_the_ID(),
		'tax_query'=>array(
			array(
				'taxonomy'=>'post_format',
				'field' => 'slug',
				'terms' => array('post-format-image'.get_post_format())
			)
		),
	)
	);	
	if($posts):	
		foreach($posts as $post):
?>
<li><a href="<?php the_permalink(); ?>" target="_blank" title="<?php the_title();?>"><?php the_title();?></a></li>
<?php 
		wp_reset_postdata(); 
		endforeach; 
	endif; 
?>

代码中的post-format-image是要调用的文章列表,格式是post-format-{name},name是文章形式的名称,如:aside、image、video、quote、link、gallery、status、audio、chat。

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权

文章名称:WordPress如何调用相同文章形式的文章

文章链接:https://www.qqhgg.com/63.html

该作品系作者结合个人学习经验及互联网相关知识整合。如若侵权请通过投诉通道提交信息,我们将按照规定及时处理。

标签:

最新文章

猜你喜欢