发布缩略图功能,如果存在该功能,则显示为背景
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了发布缩略图功能,如果存在该功能,则显示为背景相关的知识,希望对你有一定的参考价值。
post thumbnail function and display as background if function exists
// register post thumbnail function if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); add_image_size( 'company-logo',90, 55 ); //300 pixels wide (and unlimited height) } // display if function exists <?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), $size='company-logo', true, '' ); ?> <?php if( has_post_thumbnail() ) { ?> <div class="company_thumbnail" style="background: #FFF url(<?php echo $src[0]; ?>) no-repeat center center !important;"> </div> <?php } ?>
以上是关于发布缩略图功能,如果存在该功能,则显示为背景的主要内容,如果未能解决你的问题,请参考以下文章