Plugin Directory

Changeset 3319060


Ignore:
Timestamp:
06/28/2025 07:12:33 AM (9 months ago)
Author:
syntaxcloud
Message:

Release version 1.0.6

  • Added smart description extraction from theme files
  • Added configurable description extraction methods
  • Added settings page for description logic
  • Added custom fields support for manual input
  • Enhanced AIOSEO integration with fallback options
  • Improved compatibility with various theme structures
  • Added automatic Japanese text detection
Location:
syntaxhub-jld/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • syntaxhub-jld/trunk/includes/jsonld-description.php

    r3319048 r3319060  
    2828                $aioseo_description = $wp_description;
    2929            }
    30         }
    31        
    32         // デバッグ用:ログ出力(本番環境では削除)
    33         if (defined('WP_DEBUG') && WP_DEBUG) {
    34             error_log('syntaxhub-jld debug - AIOSEO Description: ' . $aioseo_description);
    3530        }
    3631    }
     
    6661                break;
    6762        }
    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         }
    7763    }
    7864
  • syntaxhub-jld/trunk/syntaxhub-JLD.php

    r3319048 r3319060  
    2222require_once plugin_dir_path(__FILE__) . 'includes/settings-page.php';
    2323
    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 
    3024// ユーザー登録リンクを追加する
    3125add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'add_custom_plugin_link');
Note: See TracChangeset for help on using the changeset viewer.