
WORDPRESS HACK: AUTOMATICALLY INSERT AUTHOR BIO ON EACH POST
Open your functions.php record as well as pulp a following code.
See a strange post here:
WordPress hack: Automatically insert writer bio on any post
All the WordPress URLs on one page.

Simply pulp a following in your style.css file: .post img { max-width: 500px; /* Adjust this worth according to your calm area size*/ height: auto; } Most WordPress themes arrangement posts calm inside of a <div class=”post”> tag. However, if a penetrate do not work, have certain we have this tab on your single.php file
Read a rest here:
Prevent your images from being as well large

To separate your post calm in columns, a initial thing to do is to format your posts which way: intensity calm goes here which appears prior to a columns. [--column--] Content for mainstay 1 here.
More here:
How to: Display posts in columns

To grasp this recipe, simply pulp a following formula in your functions.php file. By regulating functions.php, you’ll not have to re-insert this formula if we switch themes. duty insertFootNote($content) { if(!is_feed() && !is_home()) { $content.= "<div class=’subscribe’>"; $content.= "<h4>Enjoyed this article?</h4>"; $content.= "<p>Subscribe to a <a href=’http://feeds2.feedburner.com/WpRecipes’>RSS feed</a> as well as never skip a recipe!</p>"; $content.= "</div>"; } lapse $content; } add_filter (’the_content’, ‘insertFootNote’); Credits goes to Cédric Bousmane for which trick! Looking for WordPress hosting
Here is a original:
How to: Automatically insert calm after any post

First, we have to pulp a following formula in your functions.php file, in sequence to emanate a shortcode. duty sc_postimage($atts, $content = null) { extract(shortcode_atts(array( "size" => ‘thumbnail’, "float" => ‘none’ ), $atts)); $images =& get_children( ‘post_type=attachment&post_mime_type=image&post_parent=’ . get_the_id() ); foreach( $images as $imageID => $imagePost ) $fullimage = wp_get_attachment_image($imageID, $size, false); $imagedata = wp_get_attachment_image_src($imageID, $size, false); $width = ($imagedata[1]+2); $height = ($imagedata[2]+2); lapse ‘<div class="postimage" style="width: ‘.$width.’px; height: ‘.$height.’px; float: ‘.$float.’;">’.$fullimage.’</div>’; } add_shortcode("postimage", "sc_postimage"); Once done, we can simply arrangement a final picture trustworthy to post by regulating a postimage shortcode as shown below: [postimage] Many interjection to Madcore for this overwhelming recipe! Wanna have income blogging?
Here is a strange post:
WordPress Shortcode: simply arrangement a final picture trustworthy to post