• What’s the “post” part of the WP templates? Is it this –
    <?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
    <?php the_date(”,'<h2>’,'</h2>’); ?>
    <div class=”post”>
    <h3 class=”storytitle” id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”><?php the_title(); ?></h3>
    <div class=”meta”><?php _e(“Filed under:”); ?> <?php the_category() ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div>
    <div class=”storycontent”>
    <?php the_content(); ?>
    </div>
    <div class=”feedback”>
    <?php wp_link_pages(); ?>
    <?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?>
    </div>
    <!–
    <?php trackback_rdf(); ?>
    –>
    <?php include(ABSPATH . ‘wp-comments.php’); ?>
    ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • Not quite sure what you mean ?
    http://www.wiki.wordpress.org/TheLoop this it ?

    Thread Starter Jenny

    (@jenny)

    Well, what I want to do is delete the post part. You know where entries, comments etcetera is.
    I was wondering if that was it?

    Well deleting the loop would certainly do that – are you trying for static pages with the same style ?

    Thread Starter Jenny

    (@jenny)

    podz – Yep

    One man’s static pages solution here.
    Also, just enter the word ‘static’ in the search at upper right, and you will be directed to some documentation.

    Jenny, I created a static page by editing the template, an excerpt from an example page is as follows:

    <div id="content">
    <div class="post">
    <h3 class="storytitle" id="1">TITLE HERE</h3>
    <div class="storycontent">
    CONTENT HERE
    </div>
    </div>
    </div>

    <div id="menu">

    Thread Starter Jenny

    (@jenny)

    So all I need to delete is the things inside “storycontent”? what happens with the comments? will they be there? and stuff.. gah. sorry .. i’m like really new to this stuff 😛

    Copy the structure above from fargon, with your new page stuff where he has put content.
    Once you put a page up, it will be much easier to see what to take out / add etc 🙂

    Thread Starter Jenny

    (@jenny)

    Ok 🙂 Lol thanks

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

The topic ‘The content part?’ is closed to new replies.