ae6ac7eba3
Baseline before backporting wp-data-optimizer v3.0.1-v3.4.6. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TbG1keQQ7XBa7qMQY16KCY
38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: 2meet Data Optimizer — Infocards AddOn
|
|
* Plugin URI: https://2meet.io/2meet-data-optimizer/infocards
|
|
* Description: 2meet-infocards 整合:hp_vendor 9 postmeta (3 Hot tmeetic_profile_* + 6 Cold tmeetic_ig_*) + 3 vendor profile 表 + doctor check
|
|
* Version: 0.1.0
|
|
* Requires at least: 6.0
|
|
* Tested up to: 6.9.4
|
|
* Requires PHP: 8.1
|
|
* Requires Plugins: 2meet-data-optimizer, 2meet-infocards
|
|
* Author: 2meet
|
|
* Author URI: https://2meet.io
|
|
* License: GPL-2.0-or-later
|
|
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
|
* Text Domain: tmdo-infocards
|
|
* Domain Path: /languages
|
|
*
|
|
* @package TMDO_INFOCARDS
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
define( 'TMDO_INFOCARDS_VERSION', '0.1.0' );
|
|
define( 'TMDO_INFOCARDS_PATH', plugin_dir_path( __FILE__ ) );
|
|
define( 'TMDO_INFOCARDS_URL', plugin_dir_url( __FILE__ ) );
|
|
define( 'TMDO_INFOCARDS_FILE', __FILE__ );
|
|
|
|
require_once TMDO_INFOCARDS_PATH . 'includes/class-tmdo-infocards-bootstrap.php';
|
|
|
|
/**
|
|
* Phase 4 任務:完成本 AddOn 的 includes/ 實作。
|
|
*
|
|
* @see ~/.claude/plans/wp-data-optimizer-2meet-data-optimizer-zesty-liskov.md
|
|
*/
|
|
add_action( 'plugins_loaded', array( 'TMDO_Infocards_Bootstrap', 'init' ), 6 );
|