星期三, 1月 15, 2025

移除 .user.ini 失敗,該如何解決

在設定php專案時會產生 .user.ini 無法移除

1. 使用lsattr查詢屬性

lsattr .user.ini

----i-------- .user.ini

如果出現 i 屬性,表示該文件已被標記為「不可修改」或「不可刪除」。


2. 先移除此屬性後即可刪除

sudo chattr -i .user.ini

sudo rm -rf .user.ini

星期日, 10月 06, 2024

[WP Hook: template_redirect ] 404新增hook來判斷異常的社群短連結

最近發現客戶的GSC有異常的404連結來自FB非常舊的貼文,

發現原始連結被裁短造成的,解法可以簡單再Hook 404事件來處理轉址!!

add_action('template_redirect', 'custom_404_redirect_based_on_url');


星期二, 9月 17, 2024

[WPML] 啟動自訂post type支援多語言編輯

很常見會使用ACF工具自訂文章類型與分類,透過WPML外掛也很容易將它們支援多國語言。

如下設定: 




[Rankmath] sitemap異常處理: XML declaration allowed only at the start of the document

 

This page contains the following errors:

error on line 3 at column 6: XML declaration allowed only at the start of the document

Below is a rendering of the page up to the first error.

依ChatGPT給的建議,一下子就找到問題!!
結果是自已的主題functions.php,結尾多點了二行XD



其他你感興趣的文章

Related Posts with Thumbnails