go41

the info you need to know


von Joern
Keine Kommentare

Simple:Press Forum - I got the hint that if you use the Simple:Press Forum Plugin you still need to keep the call to <?php the_content(); ?> inside the template.It should finally look like this:Code:<?php/*Template Name: forum as page*/?><?php get_header(); ?>   <div id="fullforum">      <?php the_content(); ?>      <div class="clearer">&nbsp;</div>   </div><?php…


von Joern
Keine Kommentare

To get a plain page between header and footer in arthemia theme to display a forum you have to create a page template for Wordpress first. I just took page.php, which actually has this content:Code:<?php get_header(); ?> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post_<?php the_ID(); ?>"> <span…