2014-01-22 28 views
0

我是wordpress的新手。索引文件中的WordPress動態內容

我在最新版本的wordpress中使用了customizr主題。

I just put my html in theme index file. 
Now i am not getting the posts dynamic content,when click on posts link. 

I know i am missing some syntax that makes the content area dynamic 

How would i make my home page content area dynamic. 

Please help .. 

Thanks 

回答

0

試試這個

<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> 
    <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> 

    <li><?php echo substr(strip_tags($post->post_content), 0, 250);?></li> 
    <?php endwhile;?> 
</ul>