wordpress主题制作index.php基本框架代码

更多的主题制作教程,建议你看看 利用Bootstrap构建你的响应式WordPress主题(一)

  1. //引入头部文件
  2. <?php get_header();?>
  3. <div id="main">	
  4. //循环开始
  5. <?php if (have_posts()) : ?>
  6. <?php while (have_posts()) : the_post(); ?>
  7.  
  8. 标题:<a href="<?php the_permalink() ?>"><?php the_title_attribute(); ?></a>
  9.  
  10. //调用文章内容:
  11. <?php the_content("Read More..."); ?>
  12. //调用文章内容摘要:
  13. <?php the_excerpt("Read More..."); ?>
  14.  
  15. 作者:<?php the_author_posts_link(); ?>
  16. 日期:<?php the_time('F d, Y') ?>
  17.       <?php the_time('m-d') ?>//时间格式
  18.  
  19. 评论调用:<?php comments_number('No Comment', '1 Comment', '% Comments' );?>
  20. 文章所属分类:标签:<?php the_category(', ') ?>
  21. //上一页,下一页调用:
  22. <?php endwhile; ?>
  23. <?php else : ?>
  24. <?php endif; ?>
  25. <div style="float:left"><?php previous_post_link('&laquo; %link'); ?></div>
  26. <div style="float:right"><?php next_post_link('%link &raquo;'); ?></div>
  27. </div>	<!-- man ends here -->	
  28.  
  29. //引入边栏
  30. <?php get_sidebar();?>
  31. //引入底部
  32. <?php get_footer();?>

代码不能复制后直接就运行,要根据自己的主题特征适当的添加和删除,特别是静态的html布局代码,自己完成设计和添加!


发布日期:

所属分类: WordPress 主题 标签:


没有相关文章!