php the_content()之前的缩略图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php the_content()之前的缩略图相关的知识,希望对你有一定的参考价值。

add_filter('the_content', 'kf__thumbnail_before_content');

function kf__thumbnail_before_content($content) {
    global $post;
    if (is_singular('post') && has_post_thumbnail()) {
        $featuredimage = get_the_post_thumbnail($post->ID, 'full');
        $content = '<div class="classname">' . $raiting . $featuredimage . '</div>' . $content;
    }

    return $content;
}

以上是关于php the_content()之前的缩略图的主要内容,如果未能解决你的问题,请参考以下文章