I am pretty new to WordPress. I am looking to add some icons to my sidebar that will link to my other pages (i.e. Twitter, FaceBook, LinkedIn, etc.). Which do you recommend?
I am pretty new to WordPress. I am looking to add some icons to my sidebar that will link to my other pages (i.e. Twitter, FaceBook, LinkedIn, etc.). Which do you recommend?
If you can write a few lines of code, you can add them into your theme's sidebar.php file
<ul>
<li><a href="http://facebook.com/whatever...><img src="<?php bloginfo('template_directory'); ?>/images/facebookicon.jpg alt="" />See me on Facebook</a></li>
<li><a href="http://twitter.com/whatever...><img src="<?php bloginfo('template_directory'); ?>/images/twittericon.jpg alt="" />Follow me on Twitter</a></li>
</ul>You must log in to post.