使用wordpress post_thumbnail确定图像方向

时间:2011-08-16 20:12:19

标签: wordpress

在Wordpress中使用post_thumbnail功能时,有没有办法确定图像的方向?我创建了两种不同的尺寸,我需要使用合适的尺寸,即

the_post_thumbnail( 'article-pic-horizontal' );

the_post_thumbnail( 'article-pic-vertical' ); 

1 个答案:

答案 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 {
...
}