我的functions.php
$ar = array(
\'price_content\' => \'hello\'
);
$result = $wpdb->insert(\'hs_prices\', $ar); // insert \'hello\' into \'price_content\'
这应该只创建一行,但会在数据库中创建12行。当我运行此操作时,我在网站的主页上(通过刷新页面)。
这可能是因为代码在functions.php
, 整个网站被收录了12次左右?
edit: 不应该是因为它在functions.php
, 打开时也会这样index.php
. 必须是查询。
这可能是什么原因?