wordpress 小工具 html 代码 问题 谢谢
发布网友
发布时间:2022-04-29 11:42
我来回答
共3个回答
热心网友
时间:2022-06-27 03:14
把以下代码添加到主题文件目录下sidebar.php你要让其显示的位置即可。
<div class="widget"> <h3>博客统计</h3> <ul> <li>日志总数:<?php $count_posts = wp_count_posts(); echo $published_posts = $count_posts->publish;?> 篇</li> <li>评论总数:<?php echo $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments where comment_author!='".(get_option('swt_user'))."'");?> 篇</li> <li>标签数量:<?php echo $count_tags = wp_count_terms('post_tag'); ?> 个</li> <li>链接总数:<?php $link = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = 'Y'"); echo $link; ?> 个</li> <li>建站日期:<?php echo get_option('swt_builddate'); ?><br /> <li>运行天数:<?php echo floor((time()-strtotime(get_option('swt_builddate')))/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[0]->MAX_m));echo $last; ?></li> </ul> </div>
好了
其中第8,9行代码需要更改为(里面的日期根据你的实际情况更改):
<li>建站日期:2010-09-01</li> <li>运行天数:<?php echo floor((time()-strtotime("2010-09-01"))/86400);?> 天</li>
热心网友
时间:2022-06-27 03:15
<script language="javascript">
var now=new Date();var spday=new Date(2008,1-1,01);a=(now.getTime()-spday.getTime())/(24*60*60*1000);a=Math.ceil(a); document.write
("<b>"+a+"</b>");</script>天
热心网友
时间:2022-06-27 03:15
知更鸟的主题带有这个东西来自:求助得到的回答