如果自己学着制作wordpress主题,那么index.PHP文件的制作必须掌握,我们在这个文件必须引入头部文件,边栏,底部等等,提供的模板没有更多的html布局,只是框架必须的一些功能,你如果是个初学者,可以试着注释修改自己的index.PHP文件。
更多的主题制作教程,建议你看看 利用Bootstrap构建你的响应式wordpress主题(一)
//引入头部文件
PHP get_header();?>
//循环开始
PHP if (have_posts()) : ?>
PHP while (have_posts()) : the_post(); ?>
标题:PHP the_permalink() ?>">PHP the_title_attribute(); ?>
PHP the_content("Read More..."); ?>
PHP the_excerpt("Read More..."); ?>
作者:PHP the_author_posts_link(); ?>
日期:PHP the_time('F d,Y') ?>
PHP the_time('m-d') ?>//时间格式
评论调用:PHP comments_number('No Comment','1 Comment','% Comments' );?>
文章所属分类:标签:PHP the_category(',') ?>
PHP endwhile; ?>
PHP else : ?>
PHP endif; ?>
PHP prevIoUs_post_link('« %link'); ?>
PHP next_post_link('%link »'); ?>
//引入边栏
PHP get_sidebar();?>
//引入底部
PHP get_footer();?>