• Resolved cjahn

    (@cjahn)


    Hello,

    please tell a method to add an site-logo to your theme.

    I found a hind in “inc/content-extensions.php” in Line 179

    <?php
    bloginfo( ‘name’ );
    wpstart_logo_image();
    ?>

    But when I try to add a path to a logo, like

    <?php
    bloginfo( ‘name’ );
    wpstart_logo_image(<img src=’/images/headers/black-thumbnail.png’ />);
    ?>

    nothing happens.

    Thanks.

    Best Regards

    Christian

Viewing 1 replies (of 1 total)
  • Theme Author krusze

    (@kruszepl)

    Hi Christian,
    Just remove wpstart_logo_image and paste this: echo ‘<img src=”<?php echo get_stylesheet_directory_uri(); ?>/images/headers/black-thumbnail.png” />’;

    Best Regards

Viewing 1 replies (of 1 total)
  • The topic ‘How to add Site-Logo to header’ is closed to new replies.