Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
News Manager Extended and Archiving
#3
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:

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
Reply


Messages In This Thread
News Manager Extended and Archiving - by gordo - 2011-10-13, 07:50:52
News Manager Extended and Archiving - by yojoe - 2011-10-16, 21:09:28
News Manager Extended and Archiving - by Connie - 2011-10-16, 23:10:29
News Manager Extended and Archiving - by gordo - 2011-10-17, 07:27:51
News Manager Extended and Archiving - by mvlcek - 2011-10-17, 16:25:29
News Manager Extended and Archiving - by gordo - 2011-10-17, 17:46:49



Users browsing this thread: 1 Guest(s)