php custom_post_thumbnail(),带有大小检测。它将通过检查图像的方向来填充空间。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php custom_post_thumbnail(),带有大小检测。它将通过检查图像的方向来填充空间。相关的知识,希望对你有一定的参考价值。
.post-thumbnail {
height: 224px;
overflow: hidden;
position: relative;
span.blackbg {
background: rgba(0, 0, 0, 0.04);
width: 100%;
height: 100%;
position: absolute;
display: block;
left: 0;
z-index: 1;
}
img {
height: 224px;
left: 50%;
max-width: none;
top: 50%;
@include translate(-50%,-50%);
position: absolute;
width: auto;
}
&.portrait img {
height: auto;
width: 100%;
}
}
function custom_post_thumbnail() {
if ( '' !== get_the_post_thumbnail() ) :
$image_arr = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'large');
$image_url = $image_arr[0];
if ($image_arr[1] > $image_arr[2]) {
$getimagesize = "landscape";
} else {
$getimagesize = "portrait";
}
echo "<div class='post-thumbnail ".$getimagesize."'>";
the_post_thumbnail( 'large' );
echo "</div>";
endif;
}
以上是关于php custom_post_thumbnail(),带有大小检测。它将通过检查图像的方向来填充空间。的主要内容,如果未能解决你的问题,请参考以下文章
linux 安装多个PHP版本(php5.6 php7.1 php7.2 php7.3 php7.4 php8.0)nginx配置php多版本
php [guzzle php] guzzle php #php
php send.php php邮件模板#php
IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?
如何从php5升级到php7
请问php中如何调用php文件中的内容?