Photo: add to sidebar code
-
I have been customizing my wordpress blog theme from within the theme editor. I have things almost exactly the way I want them, I just need to know one thing:
I have the image I want to use uploaded to my WordPress database, and I know how to open the Sidebar area to edit the code.
I just need to know the code I would use (minus the name of the jpg of course; I will add that myself) to add a photo to the sidebar in my wordpress blog.
I will include the code for my sidebar area below, in case that is helpful. The code for the picture will either come at the end, after Feeds, or will replace Blogroll.
Thanks so much for any help.
<div id=”menu”>
<?php /*********************************
- <h2 class=”sidebar”>Titel</h2>
- Inhalt
************************************** /?>
<?php /* — Blogbeschreibung — */
if (function_exists(‘sirius_blogbeschreibunganzeige’)) { sirius_blogbeschreibunganzeige();} ?><?php /* — Kalender — */
if (function_exists(‘sirius_kalender’)) { sirius_kalender();} ?><?php /* — Kategorien — */
if (function_exists(‘sirius_kategorien’)) { sirius_kategorien();} ?><?php /* — Suche — */
if (function_exists(‘sirius_suche’)) { sirius_suche();} ?><?php /* — Letze Kommentare — */
if (function_exists(‘sirius_kommentare’)) { sirius_kommentare();} ?><?php /* — Seiten — */
if (function_exists(‘sirius_seiten’)) { sirius_seiten();} ?><?php /* — Blogroll — */
if (function_exists(‘sirius_blogroll’)) { sirius_blogroll();} ?><?php /* — Archiv — */
if (function_exists(‘sirius_archiv’)) { sirius_archiv();} ?><?php /* — Feeds — */
if (function_exists(‘sirius_feeds’)) { sirius_feeds();} ?></div>
- The topic ‘Photo: add to sidebar code’ is closed to new replies.