2012年4月21日

摘要: 我们知道wordpress中,文章,媒体,页面都是存放在wp_posts表中的。它们都被定义为一种post类型。wordpress提供了钩子让我们自己注册新的POST类型。下面我们注册一种新的类型“文档”。/** * an example of registering a post type called "document" including providing contextual help... 阅读全文
posted @ 2012-04-21 22:18 IT技术畅销书 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 代码如下:/** 获取当前文章或页面别名*/function the_slug() { $post_data = get_post($post->ID, ARRAY_A); $slug = $post_data['post_name']; return $slug;}如果,希望在首页或其他文章列表页中得到给定ID的文章对应的别名(slug)可以通过以下方法:/** 获取给定ID的POST对应的别名... 阅读全文
posted @ 2012-04-21 22:08 IT技术畅销书 阅读(498) 评论(0) 推荐(0) 编辑
摘要: wordpress调用树形结构目录最简单的方法就是使用方法就是使用函数:另一种方法,方便自定义样式,代码如下: 分类目录 '', 'orderby' => 'name', 'order' => 'ASC', 'show_last_update' =>... 阅读全文
posted @ 2012-04-21 21:59 IT技术畅销书 阅读(661) 评论(0) 推荐(0) 编辑

导航