table {   border-collapse:collapse;   border-spacing:0;  }  th,td {   padding: 0;  } 以上为css样式代码 加入到样式表中。即可清除table的默认空白 边框空白。 在灵活使用table的时候 用处还是挺大。

部分wordpress插件是直接的<?php …?>调用,但是如果在指定的页面需要调用显示。直接的页面编辑无法实现效果。 在页面模板中,the_ID()已经有展示 显示页面的ID, 最后找到源文件 wp-includes/post-template.php function the_ID() { echo get_the_ID(); } get_the_ID()是返回ID的...