您好我正试图将滑块整合到我的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;
&GT;
虽然这确实有效并且检索图像我需要能够重新分配网址,因为我必须设置为标题存储的不同标题属性。
任何人都知道检索缩略图网址的方法吗?
编辑:我还尝试使用
获取网址$url = wp_get_attachment_image_src(the_post_thumbnail());
但是由于som原因,查询返回10个链接img's并且我只将其设置为5.更好的是偶数图像没有来源。
答案 0 :(得分:1)
尝试使用wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'wanted-size' );
。 (用正确的大小替换wanted-size
)。
有关get_post_thumbnail_id
here的更多信息。