如何设置图像的特定大小?例如,我希望我的图像大小始终为“800px”宽度和“600px”高度。当我上传任何图片时,它应该是那个尺寸。它也应该具有响应性。对于上传管理器,如果我上传的图像太大,我可以裁剪它。。。。
<section class="container-wrap">
<article class="post-wrap">
<?php
$args = array(\'post_type\' => \'journals\');
$query = new WP_Query($args);
while($query -> have_posts()) : $query -> the_post();
?>
<a href="<?php the_permalink(); ?>" class="post-img">
<img width="20" height="20"src="<?php echo(types_render_field(\'artwork\', array(\'raw\' => true) )); ?>">
</a>
<header>
<span class="post-date"><?php echo(types_render_field(\'date\', array(\'format\' => \'m.d.Y\') )); ?></span>
<a href="<?php the_permalink(); ?>" class="post-title">
<h3><?php echo(types_render_field(\'title\', array(\'raw\' => true) )); ?></h3>
</a>
</header>
<?php endwhile; ?>
</article>
</section>
SO网友:Gareth Gillman
使用Add_image_size 在您的功能中。php
function theme_sizes(){
add_image_size( \'custom-size\', 800, 600);
}
在上面的代码中,请使用以下内容:
wp_get_attachment_image( 42, \'custom-size\' );
Add\\u image\\u size在上载图像时添加一个新选项,然后将图像裁剪为所需的尺寸,因此您可以使用缩略图、中等大小、全尺寸和自定义大小