Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

Konrad Pilch
Konrad Pilch
2,435 Points

Pulling image WordPress

HI,

How can i make a user to upload his image in this code?

   <div data-type"background" data-type="background" data-speed="7" class="intro-header" style="background-image:url('wp-content/themes/wp_aurelian/img/intro-bg.jpg')">
      <div class="container">
         <div class="row">
            <div class="col-lg-12">
               <div class="intro-message">
                  <h1>Aurelian Spodarec</h1>
                  <h3>Passionate Web Developer</h3>

                  <hr class="intro-divider">

                  <ul class="list-inline intro-social-buttons">
                     <li>
                        <a href="" class="btn btn-default btn-lg">
                        <i class="fa fa-twitter fa-fw"></i>
                        <span class="network-name">Twitter</span></a>
                     </li>
                     <li>
                        <a href="" class="btn btn-default btn-lg">
                        <i class="fa fa-github fa-fw"></i>
                        <span class="network-name">Github</span></a>
                     </li>
                     <li>
                        <a href="" class="btn btn-default btn-lg">
                        <i class="fa fa-linkedin fa-fw"></i>
                        <span class="network-name">Linkedin</span></a>
                     </li>
                  </ul><!-- /list-inline -->
               </div><!-- /intro-message -->
            </div><!-- /col -->
         </div><!-- /row -->
      </div><!-- /container -->
   </div><!-- parallax -->

How do I do it?