kenne das Theme nicht, leider auch kein Link von deinem Blog verfügbar:twisted:
html:
<img src="[URL="http://domain.de/wp-content/themes/deintheme/images/buttons/psycho-muell.png"]http://domain.de/wp-content/themes/deintheme/images/buttons/bild.png[/URL]"
title="Mein Button" width="80" height="15" alt="Mein Button" />
Sorry:
Das Blog: http://www.kanzlei-wanne.de (ist noch geheim ;-) )
Das Theme: http://www.el73.be/drunkey-love/
Der Code der sidebar.php
<div id="secondary">
<?php /* If this is a 404 page */ if (is_404()) { ?>
<?php /* If this is a category archive */ } elseif (is_category()) { ?>
<p><?printf( __('You are currently browsing the %1$s archives for the \'%2$s\' category.','drunkey-love'), '<a href="' . get_settings('siteurl') .'">' . get_bloginfo('name') . '</a>', single_cat_title('', false)) ?> </p>
<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
<p><?printf( __('You are currently browsing the %1$s weblog archives for the day %2$s.','drunkey-love'), '<a href="' . get_settings('siteurl') .'">' . get_bloginfo('name') . '</a>' ,get_the_time(__('l, F jS, Y','drunkey-love'))) ?></p>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<p><?printf( __('You are currently browsing the %1$s weblog archives for %2$s.','drunkey-love'), '<a href="' . get_settings('siteurl') .'">' . get_bloginfo('name') . '</a>', get_the_time(__('F, Y','drunkey-love'))) ?></p>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<p><?printf( __('You are currently browsing the %1$s weblog archives for the year %2$s.','drunkey-love'), '<a href="' . get_settings('siteurl') .'">' . get_bloginfo('name') . '</a>', get_the_time('Y')) ?></p>
<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
<p><?printf( __('You have searched the %1$s weblog archives for \'%2$s\'. If you are unable to find anything in these search results, you can try one of these links.','drunkey-love'), '<a href="' . get_settings('siteurl') .'">' . get_bloginfo('name') . '</a>', '<strong>' . wp_specialchars($s). '</strong>') ?></p>
<?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<p><?printf( __('You are currently browsing the %s weblog archives.','drunkey-love'), '<a href="' . get_settings('siteurl') .'">' . get_bloginfo('name') . '</a>') ?></p>
<?php
} elseif (is_page()) {
global $dlPageId;
$parentPageId = $dlPageId;
if ($dlPageId != null) {
if (function_exists('get_parent_page_of')) {
$parentPageId = get_parent_page_of($dlPageId);
}
$pageNavigation = wp_list_pages('child_of='.$parentPageId.'&sort_column=menu_order&title_li=&echo=0&depth=0');
if ($pageNavigation != null) {
?>
<div id="subpages">
<h2><?php _e('Subpages','drunkey-love'); ?></h2>
<div class="unfold">
<ul class="linklist">
<?php
echo $pageNavigation;
?>
</ul>
</div>
</div>
<?php
}
}
} else {
$blogDescription = get_bloginfo('description');
if ($blogDescription != null && trim($blogDescription) != '') {
?>
<p id="blog-description">
<?php echo bloginfo('description'); ?>
</p>
<?php
}
}
if (!is_search()) :
?>
<!-- ### Suchfunktion abgeschaltet ###
<div id="search">
<h2><?php _e('Search','drunkey-love'); ?></h2>
<div class="unfold">
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
</div>
</div>
### Suchfunktion abgeschaltet ### -->
<?php
endif;
?>
<div id="categories">
<h2><?php _e('Categories','drunkey-love'); ?></h2>
<div class="unfold">
<ul class="linklist">
<?php wp_list_cats('sort_column=name'); ?>
</ul>
</div>
</div>
<?php
if (function_exists('get_flickrrss')) :
?>
<div id="photos">
<h2><?php _e('Recently on <span class="flickr">Flick<span>r</span></span>','drunkey-love'); ?></h2>
<div class="unfold">
<ul class="cloud">
<?php echo get_flickrrss(); ?>
</ul>
</div>
</div>
<?php
endif;
if (function_exists('blc_latest_comments')) :
?>
<div id="sidenotes">
<h2><?php _e('Recent comments','drunkey-love'); ?></h2>
<div class="unfold">
<ul class="descriptionlist">
<?php blc_latest_comments(); ?>
</ul>
</div>
</div>
<?php
endif;
$blogrollLinks = get_links(-1, '<li>', '</li>', '', FALSE, 'name', FALSE, FALSE, -1, FALSE, FALSE);
if ($blogrollLinks != null) :
?>
<div id="blogroll">
<h2><?php _e('Die Kanzlei im Netz','drunkey-love'); ?></h2>
<div class="unfold">
<ul class="linklist">
<?php get_links(-1, '<li>', '</li>', '', FALSE, 'name', FALSE); ?>
</ul>
</div>
</div>
<?php
endif;
?>
</div>
Alles anzeigen