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] 进行授权
文章链接:https://www.qqhgg.com/63.html
该作品系作者结合个人学习经验及互联网相关知识整合。如若侵权请通过投诉通道提交信息,我们将按照规定及时处理。
标签:文章调用