我的自定义表没有在wordpress插件激活上创建

时间:2013-04-24 05:37:45

标签: php wordpress-plugin wordpress

我试图在插件激活的wordpress数据库中创建我自己的自定义表。这是我的代码..

function __construct()
    {
register_activation_hook(__FILE__,array(&$this, 'activate'));


    function activate()
    {

    global $wpdb;
    echo "<div class='updated'>Test Plugin Notice</div>";

    $table_name = $wpdb->prefix . "dive";

    $installed_ver = get_option( "divebook_db_table_dive_version" );
     //Check if the table already exists and if the table is up to date, if not create it
    if($wpdb->get_var("SHOW TABLES LIKE '$table_name'") != $table_name
            ||  $installed_ver != $divebook_db_table_dive_version ) {
        $sql = "CREATE TABLE " . $table_name . " (
              id mediumint(9) NOT NULL AUTO_INCREMENT,
              date bigint(11) DEFAULT '0' NOT NULL,
              site tinytext NOT NULL,
              description text NOT NULL,
              max_depth mediumint(9) NOT NULL,
              time mediumint(9) NOT NULL,
              UNIQUE KEY id (id)
            );";

        require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
        dbDelta($sql);
        update_option( "divebook_db_table_dive_version", $divebook_db_table_dive_version );

}
    //Add database table versions to options
    add_option("divebook_db_table_dive_version", $divebook_db_table_dive_version);

   }
}

我正在检查我的数据库。没有创建新表..Plz查看它..

2 个答案:

答案 0 :(得分:1)

这是因为任何WP激活/取消激活挂钩都需要从插件主文件内部运行,而不是从主文件中包含的文件运行。 因此,尝试从plugin-name.php文件运行激活挂钩,它将起作用。

L.E:
另外,我没有看到定义$ divebook_db_table_dive_version。另一件事,dbDelta过去给我带来了问题,尝试使用$ wpdb-&gt; query()来运行create table查询。

答案 1 :(得分:0)

可能是由于错误的SQL查询 只需在这里查看文档 https://codex.wordpress.org/Creating_Tables_with_Plugins