Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bonbutter

    (@bonbutter)

    Yes. Works fine with the default theme.

    Thread Starter bonbutter

    (@bonbutter)

    According to Dreamweaver, Line 17 in the wp-content/themes/duster/index.php is this:

    <?php get_template_part( ‘content’, get_post_format() ); ?>

    Here is the whole index.php page:

    <?php
    /**
    * @package WordPress
    * @subpackage Duster
    */

    get_header(); ?>

    <div id=”primary”>
    <div id=”content” role=”main”>

    <?php duster_content_nav( ‘nav-above’ ); ?>

    <?php /* Start the Loop */ ?>
    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( ‘content’, get_post_format() ); ?>

    <?php endwhile; ?>

    <?php duster_content_nav( ‘nav-below’ ); ?>

    </div><!– #content –>
    </div><!– #primary –>

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

Viewing 2 replies - 1 through 2 (of 2 total)