Title: quelyn's Replies | WordPress.org

---

# quelyn

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sela] How to align logo, site title, and site description in a row?](https://wordpress.org/support/topic/how-to-align-logo-site-title-and-site-description-in-a-row/)
 *  [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/how-to-align-logo-site-title-and-site-description-in-a-row/#post-11716827)
 * This is just what I was looking for, thanks so much for sharing your solution!!!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/page/2/#post-4522588)
 * Gotcha. Thanks 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/page/2/#post-4522586)
 * ok.
 * Can you tell me how to override the twentytwelve setting?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/#post-4522583)
 * In the twenty twelve theme. If you had
 *     ```
       function twentytwelve_setup()
       {
               /**
            *  Post Thumbnails
            */
           add_theme_support( 'post-thumbnails' );
           set_post_thumbnail_size( 800, 500, true );
           set_post_thumbnail_size( 75, 75, true );
           set_post_thumbnail_size( 330, 249, true );
   
       }
       add_action( 'after_setup_theme', 'twentytwelve_setup' );
       ```
   
 * And there were other calls in there besides thumbnail. Could one over-write that
   without editing parent function.php?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/#post-4522578)
 * Yes,the function is titled differently, but it’s the same. there are other commands
   in there as well. I was reading that you could put something like “if function
   exists”, but for that method it sounded like you had to edit the parent function.
   php as well :\
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/#post-4522576)
 * So, this can be re-created on any theme. twentytwelve for instance.
 * [http://wordpress.org/support/topic/change-thumnail-size-in-twenty-twelve-child-theme?replies=12](http://wordpress.org/support/topic/change-thumnail-size-in-twenty-twelve-child-theme?replies=12)
 * If the parent theme’s function file calls the wordpress function:
    [http://codex.wordpress.org/Function_Reference/set_post_thumbnail_size](http://codex.wordpress.org/Function_Reference/set_post_thumbnail_size)
 * And one wants to over-ride that in a child theme’s function file, is that even
   possible? This isn’t even really a theme dependent question, to be honest.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/#post-4522574)
 * I see I thought that since this website hosts documentation on Child Theming 
   and development that perhaps it would help support general Word Press development.
   Not other themes, but general concepts in building and developing on wordpress
   using themes. But ok.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/#post-4522571)
 * Ok, that’s fine, is there another place I should be posting on general theme 
   development support?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/#post-4522567)
 * From themeforest. I have a thread on the support for the theme, however, it has
   not yielded any assistance.
 * I know that I can remove the code from the parent themes function file, but I’m
   trying to avoid that.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/#post-4522564)
 * Well, I added the theme name because I saw other people did it. I figured my 
   question was general enough that anyone who does theme development could possibly
   help.
 * The root of the question is over-riding the parent theme’s function in a child
   theme function file.
 * Should this question be somewhere else?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Hooray] Over-ride "Post Thumbnails"](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/themehooray-over-ride-post-thumbnails/#post-4522561)
 * I definitely set the Settings > Media all to 0’s, but there is still 330×249’
   s being created and I’m guessing it’s due to the code in functions.
 * Anyone know how I can over-ride this?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot redeclare the_title()](https://wordpress.org/support/topic/cannot-redeclare-the_title/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/cannot-redeclare-the_title/#post-2490183)
 * Thank you Esmi for your reply, I wasn’t able to get into the admin panel to do
   that (Deactivate plugins). But it’s oddly working now.. I’ll have to monitor.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot redeclare the_title()](https://wordpress.org/support/topic/cannot-redeclare-the_title/)
 *  Thread Starter [quelyn](https://wordpress.org/support/users/quelyn/)
 * (@quelyn)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/cannot-redeclare-the_title/#post-2490181)
 * Okay, I did an upgrade from my host to 3.3.1 and it APPEARS to be working, so
   nevermind this one.

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