A picture in the WordPress header

by popkos
8 replies
  • WEB DESIGN
  • |
I want to add a personal picture in the header and want to see when I open any page ( constant ). Do I need some plugin or something other?
#header #picture #wordpress
  • Profile picture of the author getsometraffic
    you may have to save the existing header image and then upload to paint or photoshop to add the image to the header.. then upload back on your website.
    {{ DiscussionBoard.errors[8974743].message }}
  • Profile picture of the author Marketer Matt
    You can just add it to your theme and then style it. Something like:

    Code:
    <img src="insert_the_link_to_your_image_here" alt="" title="" />
    {{ DiscussionBoard.errors[8974836].message }}
  • Profile picture of the author RobinInTexas
    Originally Posted by popkos View Post

    I want to add a personal picture in the header and want to see when I open any page ( constant ). Do I need some plugin or something other?
    You need something else. The right way to do it depends on the theme, there are several different ways to do it.

    For example, TwentyThirteen has a dashboard function to change the header image.
    Signature

    Robin



    ...Even if you're on the right track, you'll get run over if you just set there.
    {{ DiscussionBoard.errors[8975939].message }}
  • Profile picture of the author WPcrew
    Like Robin says, the easiest way is through theme - appearance / customizer if theme supports it. All default wp themes support it: twentyeleven, twentytwelve, twentythirteen, twentyforuteen...
    {{ DiscussionBoard.errors[8976138].message }}
  • Profile picture of the author Anton Yulianto
    may have to editing header image in photosof then upload back on your website.
    {{ DiscussionBoard.errors[8985644].message }}
  • Profile picture of the author sham2
    Where you want to add the your image in header. You want to use your images as a logo the goto header and insert this code
    <a href="<?php echo home_url();?>"><img src="<?php bloginfo('template_directory');?>/images/your_image.jpg" alt="your_image" /></a>.
    If you want to add image not as a logo then you can upload it from back end.
    {{ DiscussionBoard.errors[8985790].message }}
  • Profile picture of the author webworksbd
    it's depend on your theme. Which theme your using. If you use any default theme from wordpress like twentyeleven, twentytwelve, twentythirteen then you can manage it from admin panel. If custom theme and not have the option for changing image then you need use this code as @sham2 written here
    <a href="<?php echo home_url();?>"><img src="<?php bloginfo('template_directory');?>/images/your_image.jpg" alt="your_image" /></a>

    Or can you share your website url so that we can give you best choice.
    Signature

    Need a WordPress Developer? View my gigs at Fiverr.com

    {{ DiscussionBoard.errors[8985798].message }}
  • Profile picture of the author azhar
    Yes, you can add an image in header. Some themes have the option and default header image whereas some time you have to insert an img code to insert in header area. you can add the img code, by editing the php files of your theme.
    {{ DiscussionBoard.errors[8986382].message }}

Trending Topics