• I’d like to include a signature image at the bottom of every post.
    How can I do that? Preferably with a line of code rather than a plugin.

Viewing 1 replies (of 1 total)
  • depends on your index.php, and single.php:
    (the following example code is copied from index.php of the default theme)

    <div class="entry">
    				 	<?php the_content('Read the rest of this entry &raquo;'); ?>
    				</div>

    you could add you signature image after this code; for instance so:

    <div class="entry">
    				 	<?php the_content('Read the rest of this entry &raquo;'); ?>
    				</div>
    <img class="sign" src="<?php bloginfo('template_url'); ?>/images/signature.jpg" />

    this assumes that your image is in the /images folder of the theme

Viewing 1 replies (of 1 total)
  • The topic ‘same image in every post’ is closed to new replies.