'.$ptopic.'
'; $a_article=$this->getArticle(); if (!empty($a_article)) { print $this->getArticle(); } else { // Eventuell Platzhalter anzeigen wenn noch kein Inhalt eingestellt wurde $cat = OOCategory::getCategoryById(1); // hier die ID der Kategorie $articles = $cat->getArticles( true); if ( is_array( $articles) && count( $articles) > 0) { foreach ( $articles as $article) { // Den aktuellen Artikel nicht verlinken if ( $article->getId() == 2) continue; // Startartikel ausblenden if ( $article->isStartPage()) continue; $art = new article(); $art->setArticleId( $article->getId()); echo $art->getArticle(); } } } // if (!empty($a_article)) ?>