Title: codeline's Replies | WordPress.org

---

# codeline

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/codeline/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/codeline/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Pulling Author Bios via Single.php](https://wordpress.org/support/topic/pulling-author-bios-via-singlephp/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years ago](https://wordpress.org/support/topic/pulling-author-bios-via-singlephp/#post-1968911)
 * Just learned about the_author_meta(‘description’)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Upload Photo, Crop Thumbnail, and Display Both Images](https://wordpress.org/support/topic/upload-photo-crop-thumbnail-and-display-both-images/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/upload-photo-crop-thumbnail-and-display-both-images/#post-1934393)
 * [@billerickson](https://wordpress.org/support/users/billerickson/)
 * So, I’ve created a new Page and uploaded a few images. Using a specific page 
   template, I’ve got a sidebar pulling the thumbnails (the_post_thumbnail(‘gallery-
   thumbnail’) and the main content area pulling the full sized images (gallery-
   full).
 * From what I understood, when I upload images on the page, I won’t see the thumbnail
   and full sizes.. only when I use the_post_thumbnail() will I be able to pull 
   those images.
 * However, the page is not pulling any of the images.. Only when I set an image
   to be a “Featured Image” will it pull that single image’s thumbnail and full 
   size. How do I approach trying to get all images on a page for a gallery?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Upload Photo, Crop Thumbnail, and Display Both Images](https://wordpress.org/support/topic/upload-photo-crop-thumbnail-and-display-both-images/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/upload-photo-crop-thumbnail-and-display-both-images/#post-1934057)
 * OK, quick question.. I’ve added these few lines at the end of my functions.php
   file in my theme:
 *     ```
       // enables the UI in WordPress to allow thumbnails
       add_theme_support( 'post-thumbnails' );
   
       // 50 pixels wide by 50 pixels tall, hard crop mode
       // crops from side to side or top to bottom
       set_post_thumbnail_size( 50, 50, true ); 
   
       add_image_size( 'volcom-thumbnail', 50, 60, true); // this is the thumbnail, hard cropped to 50 x 60
       add_image_size( 'volcom-full', 500, 9999); // fullsize, scaled down to a max width of 600px
       ```
   
 * Am I supposed to see these image size options in the media upload on each page/
   post.. because I don’t see anything new with the Media Upload after adding those
   lines into my functions.php
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Upload Photo, Crop Thumbnail, and Display Both Images](https://wordpress.org/support/topic/upload-photo-crop-thumbnail-and-display-both-images/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/upload-photo-crop-thumbnail-and-display-both-images/#post-1934027)
 * Awesome site, Billerickson! I’ll take a look at your approach and see if I can
   come up with something.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Pre-Filled Comment Form if Logged In](https://wordpress.org/support/topic/pre-filled-comment-form-if-logged-in/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/pre-filled-comment-form-if-logged-in/#post-1930596)
 * Would I be looking into the wp-comments-post.php file for this?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Find Out Current WordPress Page Dynamically](https://wordpress.org/support/topic/find-out-current-wordpress-page-dynamically/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/find-out-current-wordpress-page-dynamically/#post-1929781)
 * Perfect, thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No Display of Search Results](https://wordpress.org/support/topic/no-display-of-search-results/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/no-display-of-search-results/#post-1924042)
 * Nevermind.. researched and found out.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No Display of Search Results](https://wordpress.org/support/topic/no-display-of-search-results/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/no-display-of-search-results/#post-1924039)
 * Also, is there anyway to just put the code to display posts in the actual search.
   php file instead of using a function and pulling it from somewhere else?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: ["author.php" not being used!](https://wordpress.org/support/topic/authorphp-not-being-used/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/authorphp-not-being-used/#post-1923485)
 * Actually I see my layout but with no content whatsoever. The header, sidebar,
   footer, etc. all show up but no content.
 * As far as the get_header() and get_footer(), I’m using PHP includes so it’s a
   similar approach and I’m using the ‘include’ function because I have different
   page templates that pull different headers and footers.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: ["author.php" not being used!](https://wordpress.org/support/topic/authorphp-not-being-used/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/authorphp-not-being-used/#post-1923429)
 * Here you go!
 * [http://wordpress.pastebin.com/jxnYExb1](http://wordpress.pastebin.com/jxnYExb1)
 * As you can see, I’ve just kept it simple for testing purposes.. but in the long
   run, the author page will be a bit more customized.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: ["author.php" not being used!](https://wordpress.org/support/topic/authorphp-not-being-used/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/authorphp-not-being-used/#post-1923419)
 * The links to the author.php file are not pulling the author.php template at all..
   When I click on an author, it seems to pull my index.php template.
 * I would put it online but it’s local at the moment and also can’t be released
   to public! :X
 * But yes, I am “using” the author.php file as I have it in my template folder,
   but it isn’t being pulled when going to an author page.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: ["author.php" not being used!](https://wordpress.org/support/topic/authorphp-not-being-used/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/authorphp-not-being-used/#post-1923413)
 * I do have a author.php file but it is not being used..
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changing page location of Blog Posts](https://wordpress.org/support/topic/changing-page-location-of-blog-posts/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/changing-page-location-of-blog-posts/#post-1900617)
 * bump*
 * _[mod: please don’t bump – it is against the [forum rules ](http://codex.wordpress.org/Forum_Welcome)–
   and it does not speed anything up]_
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Country/Region Selector](https://wordpress.org/support/topic/countryregion-selector/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/countryregion-selector/#post-1612188)
 * Anyone.. ? Any advice
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp_list_pages & wp_page_menu](https://wordpress.org/support/topic/wp_list_pages-wp_page_menu/)
 *  Thread Starter [codeline](https://wordpress.org/support/users/codeline/)
 * (@codeline)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/wp_list_pages-wp_page_menu/#post-1612767)
 * bump

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/codeline/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/codeline/replies/page/2/?output_format=md)