摘要:今天大挖在升级wordpress主题时,需要在文章里调用相同文章形式的文章,搜索到以下代码可以完美实现我的功能需求,即通…
今天大挖在升级wordpress主题时,需要在文章里调用相同文章形式的文章,搜索到以下代码可以完美实现我的功能需求,即通过get_posts()函数。
调用指定文章形式的日志列表:
比如我需要在一组模块里调用相同文章形式的内容,如视频及图像,可以选择下面的代码,通过文章形式来归类所有相同文章形式的内容。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
$posts = get_posts(array(
‘numberposts’ => ’10’,
‘post_type’ => ‘post’,
‘tax_query’=>array(
array(
‘taxonomy’=>‘post_format’,
‘field’ => ‘slug’,
‘terms’ => array(‘post-format-image’)
)
),
)
);
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。
1
|
文章页面调用相关文章形式使用
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?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;
?>
|
来源:http://www.wazhuti.com/3322.html