一个wp插件的名字
这玩意叫什么名字 我看到大家wp的博客都有。我就是不知道名字 x
知道的说一下啊 谢谢了 没用过这插件。
楼下回复正确答案 不知道名字 我也不知道 不是插件实现的吧 本帖最后由 5ifree 于 2013 年 5 月 7 日 20:43 编辑
<div id="tj">
<ul> <h3>站点统计</h3></ul>
<li>
文章数量:<?php $count_posts = wp_count_posts();
echo $published_posts = $count_posts->publish; ?>
</li>
<li>
评论数量:<?php $total_comments = get_comment_count();
echo $total_comments['approved'];?>
</li>
<li>
分类数量:<?php echo $count_categories = wp_count_terms('category'); ?>
</li>
<li>
页面数量:<?php $count_pages = wp_count_posts('page');
echo $page_posts = $count_pages->publish; ?>
</li>
<li>
链接数量:<?php $link = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->links
WHERE link_visible = 'Y'"); echo $link; ?>
</li>
<li>
标签数量:<?php echo $count_tags = wp_count_terms('post_tag'); ?>
</li>
<li>
站点成立:2011年11月20日
</li>
<li>
迄今运行:<?php echo floor((time()-strtotime("2011-11-20"))/86400); ?>天
</li>
<li>
最后更新:<?php $last = $wpdb->get_results("SELECT MAX(post_modified)
AS MAX_m FROM $wpdb->posts WHERE (post_type = 'post' OR post_type
= 'page') AND (post_status = 'publish' OR post_status = 'private')");
$last = date('Y年n月j日', strtotime($last->MAX_m));echo $last; ?>
</li>
</div>
5ifree 发表于 2013 年 5 月 7 日 20:36 static/image/common/back.gif
站点统计
把以上代码粘贴到你博客需要显示的地方即可。
站点成立:2011年11月20日
迄今运行:<?php echo floor((time()-strtotime("2011-11-20"))/86400); ?>天
这两句里面的日期需要自己手动设置一下,设置成你的博客成立日。 <div id="tj">
<ul> <h3>站点统计</h3></ul>
<li>
文章数量:<?php $count_posts = wp_count_posts();
echo $published_posts = $count_posts->publish; ?>
</li>
<li>
评论数量:<?php $total_comments = get_comment_count();
echo $total_comments['approved'];?>
</li>
<li>
分类数量:<?php echo $count_categories = wp_count_terms('category'); ?>
</li>
<li>
页面数量:<?php $count_pages = wp_count_posts('page');
echo $page_posts = $count_pages->publish; ?>
</li>
<li>
链接数量:<?php $link = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->links
WHERE link_visible = 'Y'"); echo $link; ?>
</li>
<li>
标签数量:<?php echo $count_tags = wp_count_terms('post_tag'); ?>
</li>
<li>
站点成立:2011年11月20日
</li>
<li>
迄今运行:<?php echo floor((time()-strtotime("2011-11-20"))/86400); ?>天
</li>
<li>
最后更新:<?php $last = $wpdb->get_results("SELECT MAX(post_modified)
AS MAX_m FROM $wpdb->posts WHERE (post_type = 'post' OR post_type
= 'page') AND (post_status = 'publish' OR post_status = 'private')");
$last = date('Y年n月j日', strtotime($last->MAX_m));echo $last; ?>
</li>
</div>
正解! <div id="tj">
<ul> <h3>站点统计</h3></ul>
<li>
文章数量:<?php $count_posts = wp_count_posts();
echo $published_posts = $count_posts->publish; ?>
</li>
<li>
评论数量:<?php $total_comments = get_comment_count();
echo $total_comments['approved'];?>
</li>
<li>
分类数量:<?php echo $count_categories = wp_count_terms('category'); ?>
</li>
<li>
页面数量:<?php $count_pages = wp_count_posts('page');
echo $page_posts = $count_pages->publish; ?>
</li>
<li>
链接数量:<?php $link = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->links
WHERE link_visible = 'Y'"); echo $link; ?>
</li>
<li>
标签数量:<?php echo $count_tags = wp_count_terms('post_tag'); ?>
</li>
<li>
站点成立:2011年11月20日
</li>
<li>
迄今运行:<?php echo floor((time()-strtotime("2011-11-20"))/86400); ?>天
</li>
<li>
最后更新:<?php $last = $wpdb->get_results("SELECT MAX(post_modified)
AS MAX_m FROM $wpdb->posts WHERE (post_type = 'post' OR post_type
= 'page') AND (post_status = 'publish' OR post_status = 'private')");
$last = date('Y年n月j日', strtotime($last->MAX_m));echo $last; ?>
</li>
</div>
正解! 不知道,帮顶,楼下回答 参考样例: http://blog.xongyi.com
页:
[1]
2