WordPress
文章平均质量分 73
dchengquan66
这个作者很懒,什么都没留下…
展开
-
简易WordPress模板代码帮助手册中文版
WordPress模板基本文件style.css 样式表文件index.php 主页文件single.php 日志单页文件page.php 页面文件archvie.php 分类和日期存档页文件searchform.php 搜索表单文件search.php 搜索页面文件comments.php 留言区域文件(包括留言列表和留言框)404.php 404错误页面header.php 网页头部文件...原创 2013-03-27 22:30:45 · 363 阅读 · 0 评论 -
高级WordPress模板代码帮助手册中文版
指定example.php中的内容只在首页显示<?php if ( is_home() ) { include ('example.php'); } ?>为不同分类指定不同的样式表<?php if ( is_category('15') ) {<link rel="stylesheet" href="<?php bloginfo('template_ur...原创 2013-03-27 22:36:43 · 220 阅读 · 0 评论 -
丰富的WordPress代码参考
Display Recent PostsHere is the code you need to display the most recent 5 posts:<?php query_posts('showposts=5'); ?><ul><?php while (have_posts()) : the_post(); ?><li><...原创 2013-03-27 22:42:10 · 367 阅读 · 0 评论