[Solved] Meteor Slides as header only for homepage and Use featured image of each page as header for respective pages

I have got answer for it. I have changed the code to add meteor slides plugin in functions.php to show the slideshow just in the homepage. <?php if ( is_front_page() ) { if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow(); } } ?> After that i used a plug called WP display header to set … Read more

[Solved] How to place an image into header.php? [closed]

Don’t use a relative URL. If you look at the source you are probably trying to load the image from http://sitename.com/images/ when what you likely want is http://sitename.com/wp-content/themes/themename/images/. Assuming the image is in the theme directory in a folder that shares a directory with style.css, do this: <img id=”topL” src=”https://wordpress.stackexchange.com/questions/78271/<?php echo get_stylesheet_directory_uri(); ?>/images/img01.png”/> http://codex.wordpress.org/Function_Reference/get_stylesheet_directory_uri 3 … Read more