Changeset 3319060
- Timestamp:
- 06/28/2025 07:12:33 AM (9 months ago)
- Location:
- syntaxhub-jld/trunk
- Files:
-
- 2 edited
-
includes/jsonld-description.php (modified) (2 diffs)
-
syntaxhub-JLD.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
syntaxhub-jld/trunk/includes/jsonld-description.php
r3319048 r3319060 28 28 $aioseo_description = $wp_description; 29 29 } 30 }31 32 // デバッグ用:ログ出力(本番環境では削除)33 if (defined('WP_DEBUG') && WP_DEBUG) {34 error_log('syntaxhub-jld debug - AIOSEO Description: ' . $aioseo_description);35 30 } 36 31 } … … 66 61 break; 67 62 } 68 69 // デバッグ用:ログ出力(本番環境では削除)70 if (defined('WP_DEBUG') && WP_DEBUG) {71 error_log('syntaxhub-jld debug - Post ID: ' . $post->ID);72 error_log('syntaxhub-jld debug - Post Type: ' . $post->post_type);73 error_log('syntaxhub-jld debug - Content length: ' . strlen($post->post_content));74 error_log('syntaxhub-jld debug - Method: ' . $description_method);75 error_log('syntaxhub-jld debug - Final Description: ' . $aioseo_description);76 }77 63 } 78 64 -
syntaxhub-jld/trunk/syntaxhub-JLD.php
r3319048 r3319060 22 22 require_once plugin_dir_path(__FILE__) . 'includes/settings-page.php'; 23 23 24 // デバッグモードの場合のみデバッグファイルを読み込み25 if (defined('WP_DEBUG') && WP_DEBUG) {26 require_once plugin_dir_path(__FILE__) . 'includes/debug-description.php';27 require_once plugin_dir_path(__FILE__) . 'includes/test-aioseo.php';28 }29 30 24 // ユーザー登録リンクを追加する 31 25 add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'add_custom_plugin_link');
Note: See TracChangeset
for help on using the changeset viewer.