在您的功能中。php。。。大小是相对的。。。如果是这样的话,您可以使用相同大小的容器并将图像向左对齐。。。
if ( function_exists( \'add_image_size\' ) ) {
add_image_size( \'post-photos\', 900, 800);
}
自定义帖子模板
<?php if(has_post_thumbnail()): ?>
<?php the_post_thumbnail(\'post-photos\', array(\'class\' => \'post-photos-image\')); ?>
<?php endif; ?>
如果使用lightbox,并且需要将ligtbox类指定给图像:
在你的帖子模板中加入循环
<?php
$url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
?>
<?php if($url !="") { ?>
<img src="<?php echo $url; ?>" class="LIGHT-BOX CLASS">
<?php } else {?>
<!--Do not display image tag if there is none image attached-->
<?php } ?>