WordPress博客知更鸟Begin主题网站概括小工具美化

2019年4月24日01:27:21 发表评论 3,479
摘要

仙踪小栈是采用WordPress程序搭建的个人博客,安装了知更鸟的Begin主题,该主题功能强大,页面精彩。

网站概况是Begin主题集成的一个小工具,不过博主也是个喜欢折腾的人,对它进行美化。

 

WordPress博客知更鸟Begin主题网站概括小工具美化

 

代码部署:

该代码使用方法是:小工具 - 增强文本 - 复制进去即可

  1. <div class="table-r">
  2. <table width="100%">
  3.     <tbody>
  4.         <tr>
  5.             <td style="text-align:center;" width="50%"><i class="iconfont icon-activity"></i>&nbsp文章总数:</td>
  6.             <td style="text-align:center;" width="50%"><?php $count_posts = wp_count_posts(); echo $published_posts = $count_posts->publish;?> 篇</td>
  7.         </tr>
  8.         <tr>
  9.             <td style="text-align:center;" width="50%"><i class="iconfont icon-liuyan"></i>&nbsp留言数量:</td>
  10.             <td style="text-align:center;" width="50%"><?php global $wpdb; echo $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments");?> 条</td>
  11.         </tr>
  12.         <tr>
  13.             <td style="text-align:center;" width="50%"><i class="iconfont icon-bianji"></i>&nbsp标签总数:</td>
  14.             <td style="text-align:center;" width="50%"><?php echo $count_tags = wp_count_terms('post_tag'); ?> 个</td>
  15.         </tr>
  16.         <tr>
  17.             <td style="text-align:center;" width="50%"><i class="iconfont icon-friendLink"></i>&nbsp友链链接:</td>
  18.             <td style="text-align:center;"width="50%"><?php global $wpdb; echo $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = 'Y'"); ?> 个</td><tr>
  19.     <td style="text-align:center;" width="50%"><i class="iconfont icon-shouye"></i>安全运行:</td>
  20.     <td style="text-align:center;" width="50%"><?php echo floor((time()-strtotime("2016-5-6"))/86400); ?> 天</td>
  21. </tr><tr>
  22.     <td style="text-align:center;" width="50%"><i class="iconfont icon-weiyuqiang-"></i>&nbsp浏览总量:</td>
  23.     <td style="text-align:center;" width="50%"><?php echo all_view(); ?> 次</td>
  24. </tr><tr>
  25.     <td style="text-align:center;" width="50%"><i class="iconfont icon-xinwen"></i>&nbsp最后更新:</td>
  26.     <td style="text-align:center;" width="50%"><?php global $wpdb; $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; ?></td>
  27. </tr>
  28.         </tr>
  29.     </tbody>
  30. </table>
  31. </div>

 

效果图:

WordPress博客知更鸟Begin主题网站概括小工具美化

 

 

若文章图片、下载链接等信息出错,请在评论区留言反馈,博主将第一时间更新!如果喜欢,请打赏支持本站,谢谢大家!

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: