wordpress---置顶(sticky)功能排序(order by)
- 2012-01-11 17:40 - fzblog.net
- Views: 177
- Comments: 0
- Wordpress
wordpress中有一个很好用的功能--置顶, 现在来研究下使用方法:设置:在列表页点快速编辑(Quick Edit), 然后把置顶勾上,如图

使用:

使用:
- ......
- $sticky = get_option('sticky_posts');
- $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
- query_posts
......


