treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Wordpress Inline Images

  • I've had this problem before and looking back through old sites I cant find the fix. Google isnt helping either.

    I need to have this ladys bio pic inline in the sidebar.
    <img src=\"images/christy-white-bio-pic.jpg\" alt=\"Christy White\" />

    doesnt seem to work.

    I thought i had to add
    ../
    to the src but that wasn't it either. i know it has to do with WP's directory structure, but i just can remember the fix or find it again. any help.

    btw, i need relative sources. not absolute.
  • <img src=\"<?php bloginfo('template_url'); ?>/images/christy-white-bio-pic.jpg\" alt=\"Christy White\" />
  • awesome! thank you!