简体   繁体   中英

Wordpress logo image in header.php

I'm trying to create a custom theme in Wordpress, and currently I'm working on my header.php file. However, I'm unable to display my logo image. Here's the code for the same:

<body>

        <div class = "container">
            <div class = "five columns">
                <a href = "<?php echo get_option('home'); ?>"><img src = "<?php bloginfo('template_url'); ?>/img/sem.jpg" title = "<?php bloginfo('title'); ?>"></a>
            </div>
        </div>

    </body>

The sem.jpg image is stored inside the img folder inside my root project directory. However, the logo doesn't seem to be displayed on my webpage. I have also tried using images of other formats, but none of them seems to work. I have also called the get_header() function inside my index.php .

What seems to be wrong in my code?

The reason seems a permissions problem. You can set permission 777 to the logo image via command line, typyng:

   chmod 777 /path_to_your_file

or set using right click on the logo file, and change properties.

You can't view your image because you have got set wrong permissions on your image. Open your FTP client, connect to your site and find your image, right click it and chosse Change file permissions and change them to 644.

File permissions should look like this:

http://s12.postimg.org/rxb25ziy5/Untitled.png

Try This.

<body <?php body_class(); ?>>

        <div class = "container">
            <div class = "five columns">

    <img src="<?php echo get_template_directory_uri(); ?>/img/sem.jpg"  alt="<?php bloginfo('title'); ?" />
 </div>
        </div>

    </body>

Enjoy..!!

user this wordpress plugin it will help yo upload logo using wordpress admin and you can change any time with edit header.php file. Use below function to print logo

echo theme_logo();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM