2011-10-16, 23:10:29
gordo,
because of home renovations I was not so active in the last time, and so I also oversaw your question.
Like yojoe pointed out, it is not difficult to do it.
At get-simple.de we have the blogarchive + last news in the sidebar when the blog is active, otherwise only last entries:
the archive is:
because of home renovations I was not so active in the last time, and so I also oversaw your question.
Like yojoe pointed out, it is not difficult to do it.
At get-simple.de we have the blogarchive + last news in the sidebar when the blog is active, otherwise only last entries:
Code:
<!-- Nur auf der Blogseite Blogarchiv und letzte Einträge anzeigen, ansonsten Letzte Einträge -->
<?php
if (return_page_slug()!='blog') {
echo '<div class="section">';
echo '<h2>Letzte Blogbeiträge</h2>';
nm_list_recent();
echo '</div>';
} else {
echo '<div class="section">';
echo '<h2>Letzte Blogbeiträge</h2>';
nm_list_recent();
echo '</div>';
echo '<div class="section">';
echo '<h2>Blog-Archiv</h2>';
nm_list_archives();
echo '</div>';
}
?>
the archive is:
Code:
nm_list_archives();
|--
Das deutschsprachige GetSimple-(Unter-)Forum: http://get-simple.info/forums/forumdisplay.php?fid=18
Das deutschsprachige GetSimple-(Unter-)Forum: http://get-simple.info/forums/forumdisplay.php?fid=18