Category Archives: WordPress

WordPress 分类目录显示摘要的方法

wordpress可以设置在首页只显示摘要,但是分类目录却显示的是全文,对于文章较长的博文就比较讨厌,其实要在分类目录只显示摘要实现起来还是比较简单的。以Twenty Twelve为例,index.php archive.php category.php中的内容循环里面,都是载入的<?php get_template_part( ‘content’, get_post_format() );?>;,所以只需要修改content.php即可
Continue reading WordPress 分类目录显示摘要的方法

WordPress页面调用分类文章的方法

默认情况下WordPress的导航栏都是使用页面做为导航的,这些单一的页面可以很好的用于作者介绍、归档页面、链接等。但我们发现使用页面来展示文章列 表并不太方便,我个人是比较倾向于用分类做为页面导航的,使用分类做为导航似乎更像是一个内容充实的网站。这就会用到一种折衷的方法:导航里面既有普通页 面的显示效果,也有分类导航的显示效果。本文主要介绍如何使用WordPress 页面调用某个分类下面的文章的方法。
步骤/方法
首先需要创建一个特殊页面模板,直接复制主题中的index.php 文件,把文件名修改为你想要的模板名字,如:CAT。
打开此文件,在代码最顶部增加如下代码:
<?php
/*
Template Name: adsense
*/
?>
这段代码是声明模板的名称,你要新建页面的时候,会在选择页面模板里面看到它,当然,名字你可以随便起。这样,就完成了一个特殊页面模板的制作。
接下来就要实现这个模板显示的是特定分类下的文章内容,通过搜索找到如下代码:
<?php if(have_posts()):?>
在这行代码的前面加上:
<?php query_posts(‘showposts=15&cat=1’);?>
其中的cat=1 你可以修改成你想要显示的分类的ID,ID你可以在Wordpress后台管理中的分类目录下看到,将鼠标放上某个分类即会显示形如:http://www.tentfactory.net/wp-admin /categories.php?action=edit&cat_ID=6的链接,后面的6就是这个分类的ID号。
最后创建一个新页面,比如CAT页面,在模板选择里面选择刚刚创建的adsense 模板,然后发布,刷新首页点击进入此页面看看效果吧。
END
注意事项:
注意所有标点都是英文标点

About wp_query

Class Reference/WP Query

LanguagesEnglish • 日本語 • (Add your language)

Contents

[hide] [hide]

Continue reading About wp_query

Building Custom WordPress Theme

This is the Chapter II of the Complete WordPress Theme Guide series. This chapter will show you how to build a custom WordPress theme. Although the Codex site provides very good documentations on how to create a theme, but I find it too complicated for a beginner. In this tutorial, I will explain the basics of how WordPress theme works and show you how to convert a static HTML template into a theme. No PHP skill is required, but you need Photoshop and CSS skills to create your own design.
Continue reading Building Custom WordPress Theme

WordPress 模板制作

WordPress基本模板文件
一套完整的WordPress模板应至少具有如下文件:

  • style.css : CSS(样式表)文件
  • index.php : 主页模板
  • archive.php : Archive/Category模板
  • 404.php : Not Found 错误页模板
  • comments.php : 留言/回复模板
  • footer.php : Footer模板
  • header.php : Header模板
  • sidebar.php : 侧栏模板
  • page.php : 内容页(Page)模板
  • single.php : 内容页(Post)模板
  • searchform.php : 搜索表单模板
  • search.php : 搜索结果模板

当然,具体到特定的某款模板,可能不止这些文件,但一般而言,这些文件是每套模板所必备的。
Continue reading WordPress 模板制作