- 博客(3)
- 收藏
- 关注
原创 wordpress中文摘要
将以下两个函数写进主题所附带的functions.php文件中function Limit_Char($max_char = 200, $more_text = '...', $more_link_text = '', $limit_type = 'content') {if ($limit_type == 'title') { $limiter = get_the_title();
2012-04-20 11:35:49 462
原创 在wordpress the_category()函数生成的分类列表里移除指定分类名链接
将以下代码加入function.phpfunction the_category_filter($thelist,$separator=' ') { if(!defined('WP_ADMIN')) { //要移除的分类ID,这里是1和5 $exclude = array(1,5); $exclude2 = array(); foreach($exclude as $c) { $exclude2[
2012-04-20 11:33:03 810 1
原创 wordpress foreach用法
$formats = get_post_format_slugs(); foreach ( (array) $formats as $i => $format ) { $formats[$i] = 'post-format-' . $format;} $standard_posts = get_posts( array( 'tax_query' => array( array( 'taxonomy
2012-04-20 11:29:39 1142
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人