morgen!
ich hänge hier die
widget-ansicht rein - dort habe ich leider keinen diesbezüglichen parameter.
in der
sidebar.php meines
themes findet sich betr. des archivs folgender code, welcher auch keine möglichkeiten diesbezüglich offen lässt:
PHP-Code:
<?php /* Category Archive */ if (is_category()) { ?>
<p class="intro"> <?php printf(__('You are currently browsing the %1$s weblog archives for the %2$s category.','unnamed'), '<a href="' . get_settings('siteurl') .'">' . get_bloginfo('name') . '</a>', single_cat_title('', false) ) ?> </p>
<?php /* Day Archive */ } elseif (is_day()) { ?>
<p class="intro"> <?php printf(__('You are currently browsing the %1$s weblog archives for the day %2$s.','unnamed'), '<a href="' . get_settings('siteurl') .'">' . get_bloginfo('name') . '</a>', get_the_time(__('l, F jS, Y','unnamed'))) ?> </p>
<?php /* Monthly Archive */ } elseif (is_month()) { ?>
<p class="intro"> <?php printf(__('You are currently browsing the %1$s weblog archives for the month %2$s.','unnamed'), '<a href="'.get_settings('siteurl').'">'.get_bloginfo('name').'</a>', get_the_time(__('F, Y','unnamed'))) ?> </p>
<?php /* Yearly Archive */ } elseif (is_year()) { ?>
<p class="intro"> <?php printf(__('You are currently browsing the %1$s weblog archives for the year %2$s.','unnamed'), '<a href="'.get_settings('siteurl').'">'.get_bloginfo('name').'</a>', get_the_time('Y')) ?> </p>