发布缩略图功能,如果存在该功能,则显示为背景

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了发布缩略图功能,如果存在该功能,则显示为背景相关的知识,希望对你有一定的参考价值。

post thumbnail function and display as background if function exists
  1. // register post thumbnail function
  2. if ( function_exists( 'add_theme_support' ) ) {
  3. add_theme_support( 'post-thumbnails' );
  4. add_image_size( 'company-logo',90, 55 ); //300 pixels wide (and unlimited height)
  5. }
  6.  
  7. // display if function exists
  8. <?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), $size='company-logo', true, '' ); ?>
  9. <?php if( has_post_thumbnail() ) { ?>
  10. <div class="company_thumbnail" style="background: #FFF url(<?php echo $src[0]; ?>) no-repeat center center !important;">
  11. </div>
  12. <?php } ?>

以上是关于发布缩略图功能,如果存在该功能,则显示为背景的主要内容,如果未能解决你的问题,请参考以下文章

dedecms有缩略图则显示缩略图,没有则显示随机缩略图

当英雄图像进入视口时如何突出显示缩略图

创建缩略图失败 redmine

技术分享| 浅谈IM 产品中的“缩略图”功能

激活Wordpress中的Post缩略图功能,但如果没有要显示的图像,则不显示任何内容

在 UITableViewCell 内显示 youtube 视频缩略图和标题