WordPress投稿页面添加插入自定义栏目参数

WordPress投稿页面添加插入自定义栏目参数

投稿功能可以写标题和投稿内容等,为了满足网站制作过程中某些功能的需求,让Wordpress投稿页面添加更多的参数,今天介绍一下Wordpress投稿页面如何添加插入自定义栏目参数。

更换的代码如下:

$tougao = array(
        'post_title' => $title,                //标题
        'post_content' => $post_content,       //内容
        'post_status' => 'pending',            //待审
        'tags_input' => $tags,                 //标签
        'post_category' => array($category)    //分类
    );
    //将文章插入数据库
    $status = wp_insert_post( $tougao );
    if ($status != 0){
        //将自定义域写入最新待审文章
        global $wpdb;
        $myposts = $wpdb->get_results("
            SELECT ID
            FROM $wpdb->posts
            WHERE post_status = 'pending'
            AND post_type = 'post'
            ORDER BY post_date DESC
        ");
        add_post_meta($myposts[0]->ID, 'tiwenzhe', $name);    //插入投稿人昵称的自定义域
版权声明
转载请注明本文地址:https://www.e363.com/1522.html
THE END
喜欢龙网的内容,就支持一下吧!
点赞18赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容