• 解決済 eijiy

    (@eijiy)


    可能であればどのようなタグが必要か、どのような構成になるのか教えて頂けないでしょうか。
    今のところ3カラム右2列、ヘッダー、フッターで、固定、カテゴリー、月、日、いすれのページも開ける状態です。
    特に content のループ内の記述が分かりません。
    参考に以下の index.php のコードをご覧ください。

    <div id=”contents”>

    <div id=”content_back”>

    <div id=”content”>

    <div class=”breadcrumb_top”>
    <?php
    if(function_exists(‘bcn_display’))
    {
    bcn_display();
    }
    ?>
    </div><!– navigation –>

    <?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <div class=”section_entry” id=”entry<?php the_ID(); ?>”>
    <h2>“><?php the_title(); ?></h2>
    <ul class=”info”>
    <li class=”date”><?php the_time(__(‘Y年m月d日 (D)’)); ?>
    <li class=”category”><?php the_category(‘ | ‘) ?>
    <?php if (function_exists(‘the_tags’)) : the_tags(‘<li class=”tags”>’, ‘ | ‘, ”); endif; ?>
    <?php edit_post_link(__(‘Edit’), ‘<li class=”admin”>’, ”); ?>

    <div class=”textBody”>
    <?php the_content(__(‘Continue reading’)); ?>
    </div>

    </div>
    <?php endwhile;

    endif; ?>

    <?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?>

    <div class=”breadcrumb”>
    <?php
    if(function_exists(‘bcn_display’))
    {
    bcn_display();
    }
    ?>
    </div><!– navigation –>

    </div><!– content –>

    </div><!– content_back –>

    <div id=”sidebar”>

    <div class=”sidebar1_back”>

    <ul class=”sidebar1″>

    <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘sidebar1’) ) : ?>

    <?php endif; ?>

    <!– sidebar1 –>

    </div><!– sidebar1_back –>

    <div class=”sidebar2_back”>

    <ul class=”sidebar2″>

    <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘sidebar2’) ) : ?>

    <?php endif; ?>

    <!– sidebar2 –>

    </div><!– sidebar2_back –>

    </div> <!– sidebar –>

    </div><!– contents –>

    問題点やコードの追加が必要なところがあればご指摘ください。
    宜しくお願いいたします。

2件の返信を表示中 - 1 - 2件目 (全2件中)
2件の返信を表示中 - 1 - 2件目 (全2件中)
  • トピック「テーマを index.php と style.css だけで作成できますか。」には新たに返信することはできません。