是否可以在Wordpress中使用gulp-uncss?如果是的話,那麼做這個工作的程序是什麼?在Wordpress站點上使用gulp-uncss
3
A
回答
2
嘿好吧我終於想通了,看起來很容易。 我跟着像MandsatWork建議的多篇文章。
基本上我結合了一個關於使用gulp-uncss(在一個簡單的非Wordpress網站上)和一個grunt Uncss教程的簡單教程。
我寫了一個完整的教程就到這裏一步做這一步:http://uplifted.net/programming/remove-unused-css-wordpress-using-gulp/
所以基礎:
1)你應該有杯和大口喝,uncss項目目錄中已經(如果不是去做!它)
2)在您的gulp.js寫入文件吞氣任務uncss - 它應該是這個樣子:
//Include Gulp
var gulp = require('gulp');
//Include plugins
var uncss = require('gulp-uncss');
//Rename is included to rename the uncssed file
var rename = require('gulp-rename');
//Uncss task
gulp.task('uncss', function() {
//Where the bloated CSS lives
gulp.src('lib/bootstrap/css/bootstrap.min.css')
.pipe(uncss({
html: [
'http://wordpress[dot]dev/','http://wordpress-gulp[dot]dev/page-1/'
]
}))
//Add a suffix to avoid confusion
.pipe(rename({suffix: '.clean'}))
//The destination of new uncssed file
.pipe(gulp.dest('lib/bootstrap/css/'));
那怎麼ÿ你做它最基本的。如果你有很多的網頁,我建議使用咕嚕Sitemaps生成WordPress插件在https://gist.github.com/lgladdy/10586308
使用它的說明安裝它,然後去yourwordpresdomain.com?show_sitemap
副本的陣列並粘貼它的內容在這裏:
.pipe(uncss({
html: [
REPLACE THIS URLS ====> 'URL-1/','URL-2/page-1/'
]
}))
然後,只需運行gulp uncss :)
相關問題
- 1. 在wordpress站點使用SSL
- 2. wordpress - 在wordpress站點上使用共享SSL
- 3. 上傳本地wordpress站點免費wordpress
- 4. 在Wordpress站點上重疊CSS問題
- 5. 在wordpress站點上的javascript錯誤
- 6. 在Wordpress站點上不加載JQuery
- 7. 在Wordpress站點上延伸導航欄
- 8. gzip在wordpress站點上的壓縮
- 9. 在wordpress站點上不顯示圖像
- 10. 在wordpress多站點上覆制主題
- 11. 在託管的Wordpress站點上使用Gulp
- 12. 僅在Wordpress站點的一個頁面上使用SSL
- 13. 我無法在我的wordpress站點上使用@ font-face支持
- 14. 在另一個WordPress站點上顯示一個WordPress站點的帖子
- 15. 在Wordpress網站上使用會話
- 16. 使用Google XML站點地圖插件的WordPress站點地圖
- 17. Plesk wordpress多站點,使用子域名
- 18. 用於Wordpress站點的Iptables
- 19. 域名在wordpress多站點
- 20. 如何在WordPress站點
- 21. 在當地WordPress站點
- 22. ParseError在WordPress多站點
- 23. 錯誤在WordPress站點
- 24. 被甩在WordPress站點
- 25. 如何impliment在WordPress站點
- 26. 嘗試在WordPress站點
- 27. 把ASP.NET放在wordpress站點
- 28. WordPress多站點 - 不同站點上的不同管理主題
- 29. WordPress站點「服務不可用」在桌面上,但在移動
- 30. 不使用根域的子域上的Wordpress多站點安裝?
gulp-uncss打破了我的自舉導航下拉菜單。你有沒有遇到過類似的問題? – LoveAndHappiness 2015-01-22 06:01:26
嘿,所以我是新的Node和咕嚕,我想明白我該如何做到這一點。我正在使用filezilla移動文件。我是否只是在我的孩子主題中添加了大嘴巴和咕嚕咕嚕? – 2015-07-23 20:23:08