这是我的 mysql 语句,但由于某种原因它实际上并没有工作,我不知道为什么。提前致谢!
$ID = $_GET['post'];
$length = $_POST['excerpt_length'];
more code here to connect and select db...
mysql_query("
INSERT INTO wp_posts (excerpt)
VALUES(" . $length . ")
WHERE ID = " . $ID . "
OR post_name LIKE '" . $ID . "%'");
这是针对 wordpress 的,我正在选择添加摘录长度,因为据我所知,还没有。谢谢!
伊桑·布劳威尔