• Resolved Josh Leuze

    (@jleuze)


    I am working on a plugin for WordPress 3.0 that creates a custom post type. The custom post type includes the Featured Image functionality.

    I would like to move the Featured Image box from the “side” position to the “normal” or “advanced” position.

    Pretty simple to pull off with the add meta box function using the “context” parameter, but I can’t seem to find a similar trick for existing boxes.

    Any ideas?

Viewing 5 replies - 16 through 20 (of 20 total)
  • thank you JLeuze. removing that postimagediv meta box almost drove me nuts

    Thanks, very very useful!

    Thread Starter Josh Leuze

    (@jleuze)

    You’re welcome mirko!

    I’m trying to remove this box in my template code. I’m making a child theme of twentyten, and I’m using the much more flexible Multiple Template Images plugin for post images rather than the Featured Image box. Is the code you’re using able to be put into my child theme’s functions.php file somehow? I tried putting it in as-is and it didn’t remove the box so I’m assuming I’m doing something wrong.

    I want to modify my child theme in some way to remove the Featured Image functionality altogether. Do you know if that’s possible?

    Thanks!

    Thread Starter Josh Leuze

    (@jleuze)

    Hi Mike, when I have needed more than one post thumbnail, the Multiple Post Thumbnails plugin has come in handy.

    Twenty Ten is setup so that you can override settings in the functions.php file. Take a look at this comment:

    To override twentyten_setup() in a child theme, add your own twentyten_setup to your child theme’s
    * functions.php file.

    So you could copy the “twentyten_setup” function into your child theme’s functions.php file and comment this out:

    add_theme_support( 'post-thumbnails' );
Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘How to move Featured Image box from side to main column’ is closed to new replies.