WP特色图像URI而不是自定义字段

时间:2011-04-15 00:59:20

标签: php wordpress plugins wordpress-plugin wordpress-theming

我处于一种主题,我不能依赖wordpress中的自定义字段,而是需要使用“精选图片”功能。

这是调用自定义字段的代码

<?php $thumbnail_image = get_post_meta($post->ID, 'post-image', true); ?>

我在Wordpress codex中找不到任何关于“精选图片”的文档,但是在这个例子中是否可以调用页面特色图片的网址?

1 个答案:

答案 0 :(得分:2)

这应该让你去 http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail

修改

$image_attributes = wp_get_attachment_image_src( get_post_thumbnail_id() );
$image_src = $image_attributes[0];