我正在使用sql向wordpress添加數據。Wordpress通過Sql手動添加數據
$sql= "INSERT INTO idiot_posts (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`,
`post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
('', '2', now(), now(), '', 'placeholder', '', 'inherit', 'open', 'closed', '', 'placeholder', '', '', '', '', '', $icerikid, '$newname', '0', 'attachment', 'image/jpeg', '0')";
mysql_query($sql, $baglanti);
$kapakid = mysql_insert_id();
$sql = "INSERT INTO idiot_postmeta (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('', $icerikid, '_thumbnail_id', $kapakid)";
mysql_query($sql, $baglanti);
echo mysql_error();
這些是我的代碼。我添加數據。但精選圖像不會來。我在等你的幫助
謝謝你從現在開始。
「idiot_posts」與非白癡帖子有何區別? – spencer7593