--
前言
如果不是新主機 PHP 8.1 我也不會把 WordPress 從 4.9 升級。
- 下載 6.0 壓縮檔,還原到原網站目錄
- 登入後台把資料庫處理一下,按一下按鈕就好
- 開始使用
試用一下區塊編輯真的用不慣,所以安裝了以下 2 個 plugin 就可以恢復以前的使用習慣了
--
Plugins
- Classic Editor - 回到傳統編輯器,新的區塊編輯器我不會用
- Urvanov Syntax Highlighter - 程式碼高亮
- WP Cerber Security - 防止 WordPress 遭到不當使用,例如機器人留言
--
參考資源
--
編輯器 CSS
wp-content\themes\xxx\editor-style.css
將前台 CSS 設定複製到以上路徑即可
--
讓 -- 不會變成 —
一個 blog 為什麼要嫐屁股做自動轉換的事情,很腦殘
將以下內容存放在 wp-content\plugins 後啟用即可停止這種白痴行為
1 2 3 4 5 |
<?php /* Plugin Name: Remove the wptexturize filter */ add_filter( 'run_wptexturize', '__return_false' ); |
--
442 total views, 2 views today