我无法使用它。我有一个页面,用户可以在其中提交帖子。在那里,理想情况下,我想显示所有类别,并让他们通过下拉列表选择类别以分配帖子。我无法解决这个问题,因为我是PHP的新手,所以我决定逐步进行操作,首先要添加一个空的输入字段,用户可以在其中添加一个随机文本,该文本将成为该帖子的类别。
为此,我已经执行了以下操作:
if(isset($_POST['entry']) AND !$_POST['entry'] == ""):
$my_post = array();
$my_post['post_title'] = $_POST['title'];
$my_post['post_content'] = $_POST['entry'];
$my_post['post_status'] = 'publish';
$cat_name = sanitize_text_field($_POST['newcat']);
$my_post ['cat_name'] = $cat_name;
$my_post['post_author'] = get_current_user_id();;
// add post to database
$id = wp_insert_post( $my_post );
endif;
因此,如您所见,我正在尝试通过将类别链接到$ my_post和“ newcat”输入字段来添加类别。
表格:
<form action="" method="post" role="form">
<label for="newcat">Category Name</label>
<input type="text" name="newcat" value="" />
</form>
帖子标题和内容有效(已从上面的代码中删除),但是类别根本无效。
有人可以帮助我并解释我做错了什么以及如何解决吗?
修改 这也不起作用:
if(isset($_POST['entry']) AND !$_POST['entry'] == ""):
$my_post = array();
$my_post['post_title'] = $_POST['title'];
$my_post['post_content'] = $_POST['entry'];
$my_post['post_status'] = 'publish';
$cat_name = sanitize_text_field( $_POST['newcat'] );
$my_post ['cat_name'] = $cat_name;
$category_id = get_cat_ID( $_POST['newcat'] );
if ( ! $category_id ) {
if ( ! is_admin() ) {
die();
}
$args = array(
'description' => "Category description",
'parent' => 0);
$category_id = wp_insert_term( $_POST['newcat'], "category", $args );
}
$my_post['post_author'] = get_current_user_id();
$my_post['tax_input'] = array('category' => $category_id);
wp_insert_post($my_post);
在这里,如果该特定类别不存在,则该帖子甚至都不会添加到Wordpress!完全没有错误,也没有发布...
答案 0 :(得分:0)
请考虑使用tax_input
参数来添加类别。
此外,您可以创建一个类别(如果没有),但是请注意权限限制。
请不要允许所有用户创建类别。例如,检查是否是管理员。
$my_post = array();
$my_post['post_title'] = $_POST['title'];
$my_post['post_content'] = $_POST['entry'];
$my_post['post_status'] = 'publish';
$cat_name = sanitize_text_field( $_POST['newcat'] );
$my_post ['cat_name'] = $cat_name;
$category_id = get_cat_ID( $_POST['newcat'] );
if ( ! $category_id ) {
if ( ! is_admin() ) {
die();
}
$args = [ 'description' => "Category description", 'parent' => 0 ];
$category_id = wp_insert_term( $_POST['newcat'], "category", $args );
}
$my_post['post_author'] = get_current_user_id();
$my_post['tax_input'] = [ 'category' => $category_id ];
wp_insert_post( $my_post );