Ver Mensaje Individual
  #5 (permalink)  
Antiguo 20/11/2010, 13:32
Avatar de YolandaGC
YolandaGC
 
Fecha de Ingreso: marzo-2006
Ubicación: España
Mensajes: 151
Antigüedad: 18 años, 2 meses
Puntos: 0
Respuesta: Ayuda con width - height miniatura

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> &raquo; <?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 &raquo;', '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...