実際には非常に簡単なはずです.WordPressは、データベースとやり取りするために必要なものの中核を提供します.
これは、私が数年前に作成したテーマのサンプル コードです。これ以上のことはありません。明らかに、ある時点でテーブルを作成する必要があります。しかし、それが整ったら、グローバル $wpdb がゲートウェイになります。
function update_game($player, $field, $data)
{
global $wpdb;
$table = $wpdb->prefix . "gameplay";
$where = "tex_id=" . ($player);
$sql = "UPDATE $table SET " .$field. "='" .$data. "' WHERE $where";
$wpdb->query( $sql );
} //End update_game
または、1 つのフィールドだけの場合は、「オプション」を使用できます。例えば
function clear_game()
{
update_option('tex_deal','w');
update_option('tex_dealer','0');
update_option('tex_actor','0');
update_option('tex_candeal','0');
update_option( 'tex_flopImg' , '' );
update_option( 'tex_turnImg' , '' );
update_option( 'tex_riverImg' , '' );
update_option( 'tex_pot' , '0' );
update_option( 'tex_bigbet' , '0' );
}//end clear_game
update_option()
is/was in /wp-includes/function.php (まだそこにあると思います...しばらく経ちました) 事前に呼び出す必要がありますadd_option
-get_option()
現在の値を返します。