0
我對WordPress並不是很熟悉,但我一直在努力讓我的佈局成爲主題,所以我可以使用WordPress平臺。出於某種原因,我無法使the_post_thumbnail函數正常工作。 所以當使用這種the_post_thumbnail不能與我合作
the_post_thumbnail(array(100,100));
它表明我這個錯誤
Illegal offset type in
我對WordPress並不是很熟悉,但我一直在努力讓我的佈局成爲主題,所以我可以使用WordPress平臺。出於某種原因,我無法使the_post_thumbnail函數正常工作。 所以當使用這種the_post_thumbnail不能與我合作
the_post_thumbnail(array(100,100));
它表明我這個錯誤
Illegal offset type in
是否啓用在functions.php的縮略圖?
在你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]
。