Hay un archivo llamado image.php en el que he encontrado el siguiente código:
Código:
<h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> » <?php the_title(); ?></h2>
<div class="entry">
<p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p>
<div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div>
<?php the_content('<p class="serif">' . __('Read the rest of this entry »', 'kubrick') . '</p>'); ?>
pero no se donde tocar...
Después he encontrado en functions.php:
Código:
add_post_meta($id, '_wp_attachment_metadata', $imagedata);
$url = str_replace(get_bloginfo('url'),'',$url);
$MaxWidth = 180; //设置图片宽度界限
$MaxHeight = 112; //设置图片高度界限
pero no se si se cambia ahí el width y height...