staticx99
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Parse error on installNevermind, my error
Forum: Fixing WordPress
In reply to: Thumbnails incorrectGot it … found the answer here : https://nenuno.co.uk/creative/wordpress/adding-post-thumbnails-to-wordpress-3-0/
for me , only adding this line
<?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array("class" => "alignleft post_thumbnail")); } ?>
before the content in the loop solved the problem.
Good luck!
Forum: Fixing WordPress
In reply to: How to avoid stretching large images in a postGot it … found the answer here : https://nenuno.co.uk/creative/wordpress/adding-post-thumbnails-to-wordpress-3-0/
for me , only adding this line
<?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array("class" => "alignleft post_thumbnail")); } ?>
before the content in the loop solved the problem.
Good luck!
Forum: Fixing WordPress
In reply to: How to avoid stretching large images in a postSame problem here with wordpress 3.0. The thumbnails (featured image) keep the original height but squeeze the width of the image to fit the width of the post. Can someone help me to avoid thumbnail squeezing, i mean : scaling the image to the width of the post and keeping the original ratio for the height?
thanks!
Forum: Fixing WordPress
In reply to: Thumbnails incorrectSame problem here, the thumbnails always keep the original height and resize the width to fit the div… I want to do the opposite, adjusting the width of the image to the width of the div and scaling the height of the image to fit, keeping the original ratio of the image … any help plz?
Forum: Fixing WordPress
In reply to: Problem with thumbnail functionWell, it seems that in the 3.0, thumbnails have been replaced by featured image, but I can’t find any help on how to use it … Its weird that wordpress changes some functions like that without any clue to help us using it…