我在C#上有一个简单的程序,我有一些文本框:
title, slug, post-text, category, tags
当这个简单程序的用户填写文本框并单击名为Publish
的按钮时,我的SQL查询将被发送到数据库。
现在我有一个SQL查询发送帖子标题+帖子文本没有猫和标签:
string sql = "INSERT INTO wp_posts (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 (1,@date,@date, @Content, @Title,'', 'publish', 'open',
'open','', @Postname,'','',@date,@date,'','0','','0','post','','');";
这是有效的查询。但我需要一个解决方案来添加类别和标签。
WordPress数据库结构在这里https://deliciousbrains.com/tour-wordpress-database/
我理解我需要使用查询发送的内容,但由于SQL级别较低,我无法执行此操作。