Wordpress - 从自己的插件中保存数据

时间:2017-11-20 11:29:48

标签: php wordpress plugins save

我自己的wordpress插件会生成文件的这些数据:

文件名|创作者|日期

    This is my filename|Max Mustermann|20.11.2017
    This is my filename|Anne Mustermann|26.11.2017
    This is my filename|Alex Mustermann|27.11.2017

如何构建wordpress来保存这些数据?我该怎么做正确的方法?

感谢您的回答!

的Lingo

1 个答案:

答案 0 :(得分:1)

试试这个例子,

function bot_install()
{
    global $wpdb;
    $table = $wpdb->prefix."bot_counter";
    $structure = "CREATE TABLE $table (
        id INT(9) NOT NULL AUTO_INCREMENT,
        bot_name VARCHAR(80) NOT NULL,
        bot_mark VARCHAR(20) NOT NULL,
        bot_visits INT(9) DEFAULT 0,
	UNIQUE KEY id (id)
    );";
    $wpdb->query($structure);
 
    // Populate table
    $wpdb->query("INSERT INTO $table(bot_name, bot_mark)
        VALUES('Google Bot', 'googlebot')");
    $wpdb->query("INSERT INTO $table(bot_name, bot_mark)
        VALUES('Yahoo Slurp', 'yahoo')");
}

你得到了结果。