嗨,我想在我的wordpress主题中插入一个滑块。这就是我目前的情况:
<?php
$slider_query = new WP_Query(array(
\'posts_per_page\'=>\'5\'
));
if($slider_query->have_posts()):
while($slider_query->have_posts()):
$slider_query->the_post();
if(function_exists(\'has_post_thumbnail\') && has_post_thumbnail()){
the_post_thumbnail();
}
endwhile;
endif;
?>
虽然这可以工作并检索图像,但我需要能够检索url,因为我必须设置为标题存储的不同标题属性。
我还尝试使用
$url = wp_get_attachment_image_src(the_post_thumbnail());
但出于som原因,查询返回10个链接img,我只将其设置为5。更糟糕的是,偶数图像没有来源。
有人知道检索缩略图url的方法吗?如果没有,那么为什么我在查询中得到10幅图像?