I seem to be getting a lot of greif over on the wp.org forums, so my next try was here lol. I'm running WP v3.4 and I've created a Child-Theme based off of Twenty Ten v1.4. Everything is looking exactly how the client wants it except for one thing. The custom headers per page.
Back when using Wp v3.2 I remember being able to assign a "Featured Image" to a page, and that image (if it had the correct dimensions) would become the new header for THAT page. But for some reason this is not happening in v3.4. It claims the image is featured, however no changes take place.
As far as my child-theme goes, I've made both my home page and blog page static in the WP admin options. The theme I've constructed also has overrides for the following files from the parent theme:
And here's my child-themes Functions.php overrides:
// Area 1b, below Area 1 to the right. register_sidebar( array( 'name' => __( 'Right Widget Area', 'twentyten' ), 'id' => 'right-widget-area', 'description' => __( 'Right widget area', 'twentyten' ), 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 'after_widget' => '</li>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } /** Register sidebars by running twentyten_widgets_init() on the widgets_init hook. */ add_action( 'widgets_init', 'mmb_widgets_init' ); ?>
This is something that I would seriously like to do without the use of a plug-in. Can someone please help me to understand why my featured page images aren't showing as custom headers?
I seem to be getting a lot of greif over on the wp.org forums, so my next try was here lol. I'm running WP v3.4 and I've created a Child-Theme based off of Twenty Ten v1.4. Everything is looking exactly how the client wants it except for one thing. The custom headers per page.
Back when using Wp v3.2 I remember being able to assign a "Featured Image" to a page, and that image (if it had the correct dimensions) would become the new header for THAT page. But for some reason this is not happening in v3.4. It claims the image is featured, however no changes take place.
As far as my child-theme goes, I've made both my home page and blog page static in the WP admin options. The theme I've constructed also has overrides for the following files from the parent theme:
And here's my child-themes Functions.php overrides:
This is something that I would seriously like to do without the use of a plug-in. Can someone please help me to understand why my featured page images aren't showing as custom headers?