• Hi there. Love your work.

    Question, I uploaded a ton of header images before installing a child theme. When I activate the child theme, none of the images have the ‘Header’ designation in the media library and don’t show up as headers.

    Is there a way to designate my already uploaded header images, or do I need to actually delete from the media library and re-upload in the child theme?

    Thanks so much.

    http://wordpress.org/extend/themes/yoko/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator t-p

    (@t-p)

    try placing them in YOUR THEME’S images folder as follows:

    /wp-content/themes/YOUR THEME/images/headers/

    hope it works

    Not from the Admin Options, you would have to re-upload them.

    How the Headers Work:
    Header images are theme specific which in general terms works well as different themes have different header sizes.

    The header images when uploaded create an entry in the database ‘wp-posts’ table and get a unique post_ID, my header has the post_ID of 95

    Then in the ‘wp-postmeta’ table five entries are then created:

    _wp_attached_file
    _wp_attachment_context
    _wp_attachment_metadata
    _wp_attachment_is_custom_header

    The last one ‘_wp_attachment_is_custom_header’ has the theme name {slug} and is used to filter the headers.

    _wp_attachment_is_custom_header = twentyeleven-childtheme

    In theory if you have the database skills you could find the entries and edit the values.
    changing just the entries:
    _wp_attachment_is_custom_header : yoko
    to:
    _wp_attachment_is_custom_header : yoko-child

    If not then just upload the images again and they will be available for both the parent and child themes.

    The next version of WordPress will have support to assign headers from the media library.

    Maybe someone will create a little plugin!

    HTH

    David

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Yoko] Migrate header images in child theme?’ is closed to new replies.