我处于一种主题,我不能依赖wordpress中的自定义字段,而是需要使用“精选图片”功能。
这是调用自定义字段的代码
<?php $thumbnail_image = get_post_meta($post->ID, 'post-image', true); ?>
我在Wordpress codex中找不到任何关于“精选图片”的文档,但是在这个例子中是否可以调用页面特色图片的网址?
答案 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];