Link image to image file always to thumbnail only
-
Hi I can’t get the image to show the full sized image either in lightbox or in the url.
I had to add this function to select the image size for the page otherwise it defaults to thumbnail always. Even when I edit the gallery the images default back to thumbnail and the attachment links to attachment page not what I had selected.if ( function_exists( 'add_image_size' ) ) { add_image_size( 'new-size',364,314 ); //(not cropped) } add_filter('image_size_names_choose', 'my_image_sizes'); function my_image_sizes($sizes) { $addsizes = array( "new-size" => __( "Work Portfolio") ); $newsizes = array_merge($sizes, $addsizes); return $newsizes; }
Is this a bug with the editing?
OK so if it isn’t then how to make the image link to full size not thumbnail?
<?php $galleryArray = get_post_gallery_ids($post->ID); foreach ($galleryArray as $id) { $img = wp_get_attachment_image_src( $id, 'scriibe_portfolio_image' ); $img_src = $img[0]; $id = get_the_ID();?> <?php if ($img_src) : ?> <div class="portfolio_image" id="<?php echo esc_attr($id); ?>"> <img src="<?php echo esc_url($img_src); ?>" title="<?php the_title_attribute(); ?>" alt="<?php the_title_attribute(); ?>" /> <a rel="prettyPhoto[<?php echo esc_attr($id); ?>]" href="<?php echo esc_url($img_src); ?>"> <div class="portfolio_main"> <h3><?php the_title(); ?></h3> <div class="portfolio_content"> <?php $content = get_the_content(); ?> <?php echo wp_trim_words( wp_kses_post($content),'40' );?><?php ?> </div> </div> </a> </div> <?php endif; ?> <?php } ?>
Is there a way to default the image sizes?
Thanks again for your help….
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Link image to image file always to thumbnail only’ is closed to new replies.