Title: prtscreen's Replies | WordPress.org

---

# prtscreen

  [  ](https://wordpress.org/support/users/prtscreen/)

 *   [Profile](https://wordpress.org/support/users/prtscreen/)
 *   [Topics Started](https://wordpress.org/support/users/prtscreen/topics/)
 *   [Replies Created](https://wordpress.org/support/users/prtscreen/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/prtscreen/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/prtscreen/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/prtscreen/engagements/)
 *   [Favorites](https://wordpress.org/support/users/prtscreen/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change length of comment excerpt](https://wordpress.org/support/topic/change-length-of-comment-excerpt/)
 *  Thread Starter [prtscreen](https://wordpress.org/support/users/prtscreen/)
 * (@prtscreen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/change-length-of-comment-excerpt/#post-1514247)
 * Anyone? This should be an easy thing to do, am i right?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change length of comment excerpt](https://wordpress.org/support/topic/change-length-of-comment-excerpt/)
 *  Thread Starter [prtscreen](https://wordpress.org/support/users/prtscreen/)
 * (@prtscreen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/change-length-of-comment-excerpt/#post-1514028)
 * Dont want to use plugin, but thanks anyway =) Gonna check out the plugin and 
   have a look at the code =)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Border around icon](https://wordpress.org/support/topic/changing-text-to-bold-on-the-front-page/)
 *  [prtscreen](https://wordpress.org/support/users/prtscreen/)
 * (@prtscreen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/changing-text-to-bold-on-the-front-page/#post-1501083)
 * Id dont get any borders arround the sign-up button. Guess you got it working 
   and problem solved?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Automatically generating thumbnails using timthumb.php](https://wordpress.org/support/topic/automatically-generating-thumbnails-using-timthumbphp/)
 *  [prtscreen](https://wordpress.org/support/users/prtscreen/)
 * (@prtscreen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/automatically-generating-thumbnails-using-timthumbphp/#post-1514014)
 * Do you want thumbnails from ie posts on you startpage?
    There is a built-in function
   in wordpress for thumbnails! add this to your functions.php-file: `add_theme_support('
   post-thumbnails');`
 * Read more about using thumbnails here:
    [http://codex.wordpress.org/Template_Tags/the_post_thumbnail](http://codex.wordpress.org/Template_Tags/the_post_thumbnail)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Multiple sidebars loading same widgets](https://wordpress.org/support/topic/multiple-sidebars-loading-same-widgets/)
 *  [prtscreen](https://wordpress.org/support/users/prtscreen/)
 * (@prtscreen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/multiple-sidebars-loading-same-widgets/#post-1514012)
 * This is what you have to do:
    in your functions.php:
 *     ```
       if ( function_exists ('register_sidebar')) {
           register_sidebar ('2');
       }
       if ( function_exists ('register_sidebar')) {
           register_sidebar ('3');
       }
       ```
   
 * You have register each sidebar as it own sidebar.
    Replace this:
 *     ```
       if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) {
       				?>
       				<!-- Search form -->
       				<li><?php get_search_form(); ?></li>
   
       				<!-- Categories list -->
       				<?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>&hierarchical=0'); ?>
   
       				<!-- Tag cloud -->
       				<li>
       					<h2>Tags</h2>
       					<div><?php wp_tag_cloud('smallest=75&largest=175&unit=%'); ?></div>
       				</li>
   
       				<!-- Archives list -->
       				<li>
       					<h2>Archives</h2>
       					<ul>
       						<?php wp_get_archives('type=monthly'); ?>
       					</ul>
       				</li>
   
       				<!-- Bookmarks (links) list -->
       				<?php wp_list_bookmarks(); ?>
       				<!-- Meta links -->
       				<li>
       					<h2>Meta</h2>
       					<ul>
       						<?php wp_register(); ?>
       						<li><?php wp_loginout(); ?></li>
       						<?php wp_meta(); ?>
       					</ul>
       				</li>
       				<?php
       			}
       ```
   
 * whit this in your sidebar2/sidebar3.php-files:
 *     ```
       <?php if ( function_exists ( dynamic_sidebar(2) ) ) : ?>
       	<?php dynamic_sidebar (2); ?>
       <?php endif; ?>
       ```
   
 * Where you change ‘2’ to ‘3’ in you sidebar3.php
 * You include the sidebars with:
    `<?php get_sidebar(); ?>` <- For the default 
   sidebar(1) `<?php get_sidebar(2); ?>`<- Number 2 `<?php get_sidebar(3); ?>`<-
   Number 3
 * At least, thats how i do it!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How can I do a php redirect?](https://wordpress.org/support/topic/how-can-i-do-a-php-redirect/)
 *  [prtscreen](https://wordpress.org/support/users/prtscreen/)
 * (@prtscreen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/how-can-i-do-a-php-redirect/#post-1514007)
 * To redirect you have to put this:
 *     ```
       <?php
       header("Location: http://www.example.com/"); /* Redirect browser */
       /* Make sure that code below does not get executed when we redirect. */
       exit;
       ?>
       ```
   
 * AT THE TOP. That is BEFORE any other code.
    (read more here: [http://php.net/manual/en/function.header.php](http://php.net/manual/en/function.header.php))
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Is it possible to set container heights to 100%?](https://wordpress.org/support/topic/is-it-possible-to-set-container-heights-to-100/)
 *  [prtscreen](https://wordpress.org/support/users/prtscreen/)
 * (@prtscreen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/is-it-possible-to-set-container-heights-to-100/#post-1514000)
 * Im having some issues figuring out what you want top accomplish.. Could you post
   link to example?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [List tags and sort by number of posts with that tag](https://wordpress.org/support/topic/list-tags-and-sort-by-number-of-posts-with-that-tag/)
 *  Thread Starter [prtscreen](https://wordpress.org/support/users/prtscreen/)
 * (@prtscreen)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/list-tags-and-sort-by-number-of-posts-with-that-tag/#post-1510558)
 * Amazing! Thanks a bunch, every day wordpress surprise me 😉

Viewing 8 replies - 1 through 8 (of 8 total)