php the_content()之前的缩略图

Posted

tags:

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

<?php 
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()之前的缩略图的主要内容,如果未能解决你的问题,请参考以下文章

php 在the_content()之前或之后添加HTML或Shortcode - WordPress mu-plugin

php缩略图组织者

警告:count() 在我的 single.php 中获取 wordpress 帖子的内容

PHP缩略图组件的使用?

PHP生成缩略图--等比缩略图

php echo the_content