-1

私はワードプレスを使用しています。

私の考えはまさにstackoverflowのように見えます。インデックスページのコンテンツが表示されませんが、スタックオーバーフローのように投稿コンテンツが表示されます

<article id="container">
<?php if(have_posts()):?> <?php while(have_posts()): the_post();?>
    
    <div class="post" id="post-<?php the_id(); ?>">
        
        <div class="postmetadata small-font">
            <ul>
                <li><?php bawpvc_views_sc('post_view', 'bawpvc_views_sc'); ?></li>
                <li><?php comments_popup_link();?></li>
            </ul>
        </div>
        
        <div class="post-header">
        
            <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                <?php get_template_part( 'content', get_post_format() ); ?>
                <?php the_excerpt(); ?>
        </div><br />
        
        <div class="date small-font">
            <ul>
                <li><?php the_author()." " ;?></li>
                <li><?php the_modified_date();?></li>
                <li><?php the_category(', '." ")?></li>
                
            </ul>
        </div>  
        
    </div>
    
<?php endwhile; ?>

the_content() を使用: ここに画像の説明を入力

the_excerpt() を使用: ここに画像の説明を入力

しかし、私はコンテンツが表示されないようにしたい。

4

2 に答える 2

1

1-index.php 2-single.php の 2つのページを作成する必要があります。

index.php

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

single.php

<?php if(have_posts()):?> <?php while(have_posts()): the_post();?>
<?php the_title(); ?>
<br>
<?php the_content();?>
<?php endwhile; ?>
<?php endif; ?>
于 2013-05-09T08:12:59.183 に答える