在Wordpress中使用post_thumbnail功能时,有没有办法确定图像的方向?我创建了两种不同的尺寸,我需要使用合适的尺寸,即
the_post_thumbnail( 'article-pic-horizontal' );
或
the_post_thumbnail( 'article-pic-vertical' );
答案 0 :(得分:11)
向更好的建议开放,但最终为我工作的是:
$post_thumbnail_id = get_post_thumbnail_id( $post_id );
$imgmeta = wp_get_attachment_metadata( $post_thumbnail_id );
if ($imgmeta['width'] > $imgmeta['height']) {
...
} else {
...
}