WordPress的建置

基本上是straightforward。但是要把“Powered by WordPress”/“本站採用 WordPress 建置”以及“Meta”/“其他操作”中的WordPress連結去掉並不直覺。一般網上建議是去改theme中的php或css檔,但這並不是理想的做法。我最後採用的是在附加的 CSS中加入

.powered-by-wordpress {
	display: none;
}
.widget_meta ul>li:last-child {
	display: none;
}

即可。

發佈留言