1

目前,我正在使用 tablepress 使用表格格式输出不同的信息。我希望用户能够添加到现有信息。我需要一个 wordpress 中的表单,将用户帖子保存到这些不同的表中。我该怎么办?对不起,如果我听起来很愚蠢,但我对 html 很软。

谢谢。

4

1 回答 1

1

If you want to insert in posts table using custom form, you can use wp_insert_post().

This function inserts posts (and pages) in the database. It sanitizes variables, does some checks, fills in missing variables like date/time, etc. It takes an object as its argument and returns the post ID of the created post (or 0 if there is an error).

Reference : http://codex.wordpress.org/Function_Reference/wp_insert_post

于 2012-12-01T06:13:19.610 回答