有没有办法不使用get\\u the\\u extract()获取图像?我正在使用my\\u recent\\u post()函数将帖子拉到主页上,我不需要让它拉帖子中的图像,只需拉一些文本。
下面是我正在使用的函数:
function my_recent_post()
{
global $post;
$html = "";
$my_query = new WP_Query( array(
\'post_type\' => \'post\',
\'posts_per_page\' => 3
));
if( $my_query->have_posts() ) : while( $my_query->have_posts() ) : $my_query->the_post();
$html .= "<div class=\'item\'><a href=\\"" . get_permalink() . "\\"><span>" . get_the_date() . "</span></a>" . get_the_post_thumbnail() . "
" . get_the_excerpt() . "</div> <div class=\'clear\'></div>";
endwhile; endif;
return $html;
}
add_shortcode( \'news\', \'my_recent_post\' );