存档

‘博客相关’ 分类的存档
超过733人围观。 | 8 条评论
六 12th, 2010 | Filed under 博客相关
标签: , , , ,

没事在链接里转悠时看到个好东西~  一段代码 据说可以实现“不用插件完美显示站点统计”  于是乎备份到BLOG 顺便测试下刚安装的代码高亮插件。。 [php]<h3>站点统计</h3><p>文章数量:<?php $count_posts = wp_count_posts(); echo $published_posts = $count_posts->publish; ?> 评论数量:<?php $total_comments = get_comment_count(); echo $total_comments['approved'];?> 分类数量:<?php echo $count_categories = wp_count_terms(‘category’); ?> 页面数量:<?php $count_pages = wp_count_posts(‘page’); echo $page_posts = $count_pages->publish; ?> 链接数量:<?php $link = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = ‘Y’"); echo $link; ?> 标签数量:<?php echo $count_tags = wp_count_terms(‘post_tag’); ?> [...]

超过700人围观。 | 没有评论
六 11th, 2010 | Filed under 博客相关