一个多作者的WordPress博客,有时需要展示作者列表,并进行适当的排序操作,下面是一些具体的方法,仅供参考: 需要扩展的功能: 1. 输出文章最多的作者,并按文章数量排序; 2. 自定义输出作者的个数。 修改的内容: 1. 为 wp_list_authors 函数增加两个控制变量:limited 和 order $defaults = array( ‘optioncount’ => false, ‘exclude_admin’ => true, ‘show_fullname’ => false, ‘hide_empty’ => true, ‘feed’ => ”, ‘feed_image’ =&g […]
分类:个人杂烩
10款免费的WordPress 3.0主题
1、Stargaze 2. PhotoBlog 3. Freshblog 4. AutoFocus+ 5. MobileWorld 6. Animes 7. Perfecta 8. Simplo 9. Magazine Basic 10.Akylas
Windows 7 最新激活工具
老版本的Windows 7 激活工具很多都不能用了,分享一下我正在使用的 http://www.box.net/shared/11cyg3jvtv
不用插件实现WordPress分页
制作WP主题要用到分页,下面是几种不用插件实现WordPress分页的方法: 将下面代码拷贝到functions.php文件中: /* Mini Pagenavi v1.0 by Willin Kan. */ function pagenavi( $p = 2 ) { // 取當前頁前後各 2 頁 if ( is_singular() ) return; // 文章與插頁不用 global $wp_query, $paged; $max_page = $wp_query->max_num_pages; if ( $max_page == 1 ) return; // 只有一頁不用 if ( empty( $paged ) ) […]
18个优秀的在线配色调试网站工具
一个优秀的前端设计师,必须要有一个好的配色功底,下面为大家推荐18个优秀的在线配色调试网站工具: Adobe Kuler Colr.org Colour Lovers Color Schemer Color Palette Generator Web 2.0 Color Palette Color Scheme Generator ColorJack Color Harmony Color Blender Color Schemer Online v2 ColorDB Accessibility Color Wheel Color Hunter GenoPal Pic2Color
WordPress作者头像等信息插件:Author Exposed v.1.1
Author Exposed is a simple WordPress plugin that allows your visitors easy and elegant way to see more details about the post author. This plugin does the same thing as the_author() tag only this time it’s linked to hidden layer (div). By clicking on the author link the layer pop’s up with author info gathered from the […]
WordPress 模板作者相关函数
the_author 显示文章的作者 the_author_description 显示文章作者的描述(作者个人资料中的描述) the_author_login 显示文章作者的登录名 the_author_firstname 显示文章作者的firstname(名) the_author_lastname 显示文章作者的lastname(姓) the_author_nickname 显示文章作者的昵称 the_author_ID 显示文章作者的ID号 the_author_email 显示文章作者的电子邮箱 the_author_url 显示文章作者的网站地址 the_author_link (添加于2.1版本) 显示一个以文章作者名 […]
WordPress 模版参数(一)
<?php the_author_nickname(); ?>这句是用来读取WordPress后台设定的作者昵称,如果不愿意使用昵称而要使用名字,也可以使用其它函数:the_author显示作者名 字;the_author_login显示作者登录名;the_author_url显示作者的网站地址。 <?php the_time(’F dS, Y’); ?> 显示发布时间 <?php the_category(’, ‘) ?> 显示文章分类。 <?php edit_post_link(’edit’, ‘(’, ‘)’); ?>如果作者就是博客管理员,则会在登录状态下显示edit编辑按钮 […]
WordPress点击统计插件WP-PostViews一直为0的原因之一
很多朋友在使用WordPress点击统计插件WP-PostViews之后,但点击值一直是0,有的时候不知道什么原因,点击量一直保持不变,无论是重装插件还是重装WP,还是这样。这种情况一般更容易出现在自己制作的主题上,解决办法如下: 在你的日志主题single.php文件或header.php文件的</body>标签前加上代码: <?php wp_head(); ?> 统计就会恢复正常,试一下吧。
和谐中国14个经典问题,看你能答出来几个
第1题:为什么有人从几千米高直接跌落到千米左右却面不改色心不跳? 答:是在跳伞。 错,是中国股民。 第2题:某人第一个月拿1000元工资,第二月拿800,第三月拿600,请问他的工资是降低了还是增长了? 答:降低了。 错,是负增长。 第3题:一群全副武装的人与一个手无寸铁的人进行激烈的搏斗这是什么事情? 答:是抗日战争。 错,是城市管理者执法。 第4题:你只有10平米的房屋,邻居从0平米换到100平米,你的居住面积有没有增加? 答:没有。 错,你在平均住房面积里被增加了50平米。 第5题:明明你口袋里只有50元,却搞一大堆数据证明你实际有100元的是什么人? 答:骗子。 错,是统计局。 第6题:一个永远要你对她负责而她却不对你负责的 […]