我写了一个Ajax建议插件,我想得到帖子的缩略图,但不知道怎么做。这是我的插件代码:
$s = trim( stripslashes( $_GET[\'q\'] ) );
$query_args = apply_filters(
\'wpss_search_query_args\',
array(
\'s\' => $s,
\'post_status\' => \'publish\',
),
$s
);
$query = new WP_Query( $query_args );
if ( $query->posts ) {
$results = apply_filters(
\'wpss_search_results\',
wp_list_pluck( $query->posts, \'post_title\' ),
$query
);
echo join( $results, "\\n" );
}
最合适的回答,由SO网友:Nomad Coder 整理而成
你是说特色图片吗?使用wp_get_attachment_image
- 下面是我在中使用的代码my plugin
while ( $the_query->have_posts() ) :$the_query->the_post();
$image_id = get_post_thumbnail_id();
$imagesize="thumbnail";
$image_url = wp_get_attachment_image_src($image_id, $imagesize, true);
//do something
endwhile;
您还可以使用
wp_get_attachment_url( $id );