这个选项当然是实现打印文章的功能,让别人可以方便的打印出喜欢的文章。 首先是进入博客后台,打开html编辑备份你的模版, 在<head>和</head> 之间加入下面的代码。 <style type="text/css" media="print"> #noprint {display: none;} // Hide unwanted elements body {background:fff; color:000;} // Black text on White background a {text-decoration: underline; color:00f;} //Underline Hyperlinks in blue } </style> 其次就是你可以把下面代码放在想有打印选项的文章页里。 <a href="javascript:window.print()">打印</a> 当然你也可以找到Settings - Formatting( 格式设定),在最后的Post-template(文章模板)添加这段代码,给每篇文章都加了打印选项。