WordPress Fancybox Resize Large Image

What you will need to do is edit your theme’s functions.php file to add a new image size. Scroll to the bottom and inside the php tags enter: add_image_size( ‘fancybox-full’, 800, 9999 ); This will create an uncropped image 800px wide, whenever an image is uploaded. You will then need to edit the anchor for … Read more

Large size image breaks template layout

In your functions.php file, you need to define $content_width, which will cause WordPress to scale large-size images, and also embedded videos, accordingly. e.g. if the width of your content area is 600px: if ( ! isset( $content_width ) ) { $content_width = 600; } You will probably also want to add accompanying CSS, e.g.: #content … Read more

Add multiple images to author profile page

You can use this for an author photo: http://wordpress.org/extend/plugins/user-photo/ And this one might give you multiple images for the author: http://wordpress.org/extend/plugins/sem-author-image/ The final approach is to use a gallery plugin of some kind (NexGen Gallery Perhapse?) and create an album for each author, labeling it “John Doe”. Then, call the gallery in the authors.php file … Read more

Show full image thumbnail

These are two different things: How can I set full image thumbnail on category pages vs Image should be small in dimensions but not been cropped. In order to display the full-size image thumbnail, use: <?php the_post_thumbnail( ‘full’ ); ?> In order to display a box-resized, rather than hard-cropped, image, you need to tell WordPress … Read more