从自定义字段获取默认的帖子缩略图

时间:2014-10-04 17:18:51

标签: php wordpress

这是默认的缩略图后代码

add_filter( 'post_thumbnail_html', 'my_post_thumbnail_html' );

function my_post_thumbnail_html( $html ) 
{
    if ( empty( $html ) )
        $html = '<img src="' . trailingslashit( get_stylesheet_directory_uri() ) . 'images/default-thumbnail.png' . '" alt="" />';

    return $html;
} 

我想从自定义字段

获取此缩略图
/wp-content/plugins/postt/<?php echo get_post_meta( get_the_ID(), 'img', true ); ?>.jpg

我怎么做?

0 个答案:

没有答案