我正在编辑主题的 entry.php 以用帖子的特色图片替换缩略图。
编写了以下脚本:
echo $post->ID; //outputs 141
$feat_image = wp_get_attachment_url($post->ID, array('100', '100'));
var_dump($feat_image);
输出:布尔(假)
我只想获取特色图片的 URL,以便我可以自己在标签下对其进行样式设置。
我正在编辑主题的 entry.php 以用帖子的特色图片替换缩略图。
编写了以下脚本:
echo $post->ID; //outputs 141
$feat_image = wp_get_attachment_url($post->ID, array('100', '100'));
var_dump($feat_image);
输出:布尔(假)
我只想获取特色图片的 URL,以便我可以自己在标签下对其进行样式设置。