$wpdb グローバル オブジェクトを理解して取得しようとしていますが、うまくいかないようです。基本的に、wordpress DB のカスタム テーブルに単一のレコードを挿入しようとしています。独自の接続文字列を作成してそれを使用する代わりに、Global $wpdb オブジェクトがうまく機能するのを見てきました。私はコーデックスの例に従い、自分でやろうとしましたが失敗しました。エラーは発生しませんが、レコードも挿入されません。問題を理解するのに何時間もかかりました。あなたの助けをいただければ幸いです。前もって感謝します。
コード:
<?php
class Listings{
private $buisnessName;
private $contactName;
private $categories;
private $websiteURL;
private $telephoneNum;
private $address;
private $socialLinks;
private $shortDescription;
private $images;
private $fullDescription;
private $tags;
function __construct($buisnessName, $contactName, $categories, $websiteURL, $telephoneNum,$address,$socialLinks, $shortDescription, $images, $fullDescription,$tags){
$this->buisnessName = $buisnessName;
$this->contactName = $contactName;
$this->categories = $categories;
$this->websiteURL = $websiteURL;
$this->telephoneNum = $telephoneNum;
$this->address = $address;
$this->socialLinks = $socialLinks;
$this->shortDescription = $shortDescription;
$this->images = $images;
$this->fullDescription = $fullDescription;
$this->tags = $tags;
}
function Insert_Listing(){
global $wpdb;
$wpdb->insert('wp_listings_info', array("Buisness_Name" => $this->buisnessName,"Contact_Name" => $this->contactName, "Categories" => $this->categories, "Website_URL" => $this->websiteURL, "Telephone_Number" => $this->telephoneNum, "Address" => $this->address, "Social_Network_Links" => $this->socialLinks, "Short_Description" => $this->shortDescription, "Images" => $this->images, "Full_Description" => $this->fullDescription, "Tags" => $this->tags), array("%s", "%s","%s", "%s","%s", "%s","%s", "%s","%s", "%s","%s"));
}
}
?>
テーブル構造:
CREATE TABLE IF NOT EXISTS `wp_listings_info` (
`L_ID` int(11) NOT NULL AUTO_INCREMENT,
`Business_Name` varchar(100) NOT NULL,
`Contact_Name` varchar(100) NOT NULL,
`Categories` varchar(100) NOT NULL,
`Website_URL` varchar(150) NOT NULL,
`Telephone_Number` varchar(20) NOT NULL,
`Address` varchar(250) NOT NULL,
`Social_Network_Links` varchar(500) NOT NULL,
`Short_Description` text NOT NULL,
`Images` varchar(100) NOT NULL,
`Full_Description` text NOT NULL,
`Tags` varchar(500) NOT NULL,
PRIMARY KEY (`L_ID`)
)
そして、私はこのようにクラスのオブジェクトを呼び出しています:
$listingObj = new Listings($buisnessName, $contactName, $categories, $websiteURL, $telephoneNum,$address, $socialLinks, $shortDescription, $images, $fullDescription,$tags);
$listingObj->Insert_Listing();
繰り返しますが、エラーはまったく発生していません。コードがレコードを挿入しないだけです。助けていただければ幸いです。ありがとう。