示例页面

这是示范页面。页面和博客文章不同,它的位置是固定的,通常会在站点导航栏显示。很多用户都创建一个“关于”页面,向访客介绍自己。例如:

欢迎!我白天是个邮递员,晚上就是个有抱负的演员。这是我的网站。我住在天朝的帝都,有条叫做Jack的狗。

……或这个:

XYZ Doohickey公司成立于1971年,自从建立以来,我们一直向社会贡献着优秀doohickies。我们的公司总部位于天朝魔都,有着超过两千名员工,对魔都政府税收有着巨大贡献。

而您,作为一个WordPress用户,我们建议您访问控制板,删除本页面,然后添加您自己的页面。祝您使用愉快!

暂无评论

none
暂无评论...
jQuery(window).on('load', function () { $('#tablepress-1 tfoot td').each(function () { const th = jQuery(document.createElement('th')).html($(this).html()); $(this).replaceWith(th); }); var table = $('#tablepress-1').DataTable(); console.log("列数:" + table.columns().count()); table.columns().every(function (index) { var column = this; console.log("第 " + index + " 列的 footer 是:", column.footer()); var select = $('') .appendTo($(column.footer()).empty()) .on('change', function () { var val = $.fn.dataTable.util.escapeRegex($(this).val()); column.search(val ? '^' + val + '$' : '', true, false).draw(); }); column.data().unique().sort().each(function (d) { select.append(''); }); }); });