the_post_thumbnail没与我合作

时间:2014-01-07 09:14:27

标签: wordpress

我对wordpress并不是很熟悉,但我一直在努力将我的布局写成主题,以便我可以使用wordpress平台。由于某种原因,我无法使the_post_thumbnail函数正常工作。 所以在使用时

the_post_thumbnail(array(100,100)); 

它告诉我这个错误

  Illegal offset type in 

2 个答案:

答案 0 :(得分:0)

您是否在functions.php中启用了缩略图?

答案 1 :(得分:0)

functions.php中,您应该添加此项以启用精选缩略图:

add_theme_support( 'post-thumbnails' ); 

然后在你的循环内或while

内部进行调用
<?php 
    $image_id = get_post_thumbnail_id();
    $image_url = wp_get_attachment_image_src($image_id,'large', true);
    echo $image_url[0];  
?>

它会返回您的精选图片网址,然后您可以在任意位置回显$image_url[0]