Inserting two categories

时间:2015-07-12 作者:Rohit Poonia

我试图在一篇文章中同时定义两个类别。请告诉我哪里做错了。

\'post_author\' => $user_id,
                \'post_status\' => \'pending\',
                \'post_category\' => array($_POST[\'cat\'],$_POST[\'joblocation\'])   
                //\'taxonomy\'      => \'jobtype\'
                     $pid =  wp_insert_post( $post_information );
            wp_set_post_terms( $pid, $_POST[\'cat\'], \'jobtype\', false );
            wp_set_post_terms( $pid, $_POST[\'joblocation\'], \'jobscategory\', false );

1 个回复
SO网友:Rituparna sonowal

只需在wp\\u set\\u post\\u terms分类参数中传递带有类别术语的数组。

global $post;
$post_id = $post->ID;//get the current post id
$terms = array(\'term1\',\'term2\');
$taxonomy = \'category\';
$append = false; // or true
wp_set_post_terms( $post_id, $terms, $taxonomy, $append );

结束

相关推荐

我有index.php等文件,如何显示其他页面?

我正在将HTML主题转换为WP。我有索引。php,标题。php,页脚。php,它来自HTML。然后我在管理区内创建了一些页面,比如关于我们等。创建了一个菜单并将这些页面链接到菜单。菜单显示得很好,但WP显示的是索引,而不是我创建的页面。php。所以我想我需要一个模板来显示关于我们和其他页面的信息。如果是重复的,请在评论中发布一个链接,我的意思是完全重复的,而不是我必须坐在那里猜测答案。谢谢我试着阅读an article in Codex 但它写得不好,听起来像胡言乱语。应该是straighforward,