From 1b05272fe737f35d48ae217d78dca8da730fd6ed Mon Sep 17 00:00:00 2001 From: liaoxin Date: Sat, 16 May 2026 21:38:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=A3=80=E6=B5=8B=20index.php=20?= =?UTF-8?q?=E5=9B=BA=E5=AE=9A=E9=93=BE=E6=8E=A5=E5=B9=B6=E7=BB=99=E5=87=BA?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- functions.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/functions.php b/functions.php index 90ad8eb..bcb74ab 100644 --- a/functions.php +++ b/functions.php @@ -211,6 +211,16 @@ function kjweji_setup_pages() { flush_rewrite_rules(); } +// ── 检查固定链接格式 ────────────────────────── +// 如果启用了 /index.php/ 前缀,自定义文章类型的路由会失效 +add_action('admin_notices', 'kjweji_permalink_notice'); +function kjweji_permalink_notice() { + $permalink = get_option('permalink_structure'); + if ($permalink && strpos($permalink, 'index.php') !== false) { + echo '

空笺未寄主题提示:检测到固定链接包含 /index.php/,会导致「微言」和「拾影」页面无法访问。建议在「设置 → 固定链接」中改用不含 index.php 的格式(如 /%postname%/)。

'; + } +} + // 自定义文章类型:拾影 add_action('init', 'kjweji_register_photo'); function kjweji_register_photo() {