by:
ponytail @
09 九 ,
2011 in:
┨Skill
wordpress是好物,我的大爱,啥都能做了,最近算是转型期,不知道转不转的过弯来,有用的东西先记录一下~~
1. 设定过期时间
<?php
if (have_posts()) :
while (have_posts()) : the_post(); ?>
$expirationtime = get_post_custom_values(‘expiration’);
if (is_array($expirationtime)) {
$expirestring = implode($expirationtime);}
$secondsbetween = strtotime($expirestring)-time();
if ( $secondsbetween > 0 ) {
// For example…
the_title();
the_excerpt();
}
endwhile;
endif;?>
Read the rest of this entry »
昏天暗地折腾新的主题ING,发现query_posts()真是无比强大,记录一下~~
将query_posts()放在LOOP之前限定你所需要的条件,wp_query会产生一个新的使用你的参数的SQL查询,而忽视通过URL接收到的其它的参数,如果想不忽略,可以在调用中使用$query_string。
query_posts($query_string . "&order=ASC")
设置文章显示的顺序,但是不干扰其余的查询字符串,参数前须有“&”符号
其他还有N多用途~~
Read the rest of this entry »
by:
ponytail @
19 十一 ,
2008 in:
┨Skill
一Niubility滴小哥十月才新开的博,讲一些Wordpess修改方面的小技巧,并且会回答大家提出的各种问题,我也要去的,准备准备,虽然不少小功能都可以找些这个那个插件实现,8过,被各个插件JS冲突搞得头大的我还是觉得,能简单自己修改搞定的,还是直接动手吧。。。虽然是E文,不过都很简单很好懂的~~

Read the rest of this entry »
by:
ponytail @
23 十 ,
2008 in:
┨Skill
天暗地改皮肤和插件ING,要用到的,记一下
WordPress基本模板文件
一套完整的WordPress模板应至少具有如下文件: