G3User
Registered
Hi! I have been customizing my wordpress blog theme from within the theme editor. Things are going great, and I have them just about the way I want them. My wordpress blog, by the way, is installed at my own website.
The reason why I am writing: I want to add a photo to the sidebar area, by editing the Sidebar area code.
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.
Thank you very 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 reason why I am writing: I want to add a photo to the sidebar area, by editing the Sidebar area code.
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.
Thank you very 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>