php – 以编程方式添加带附件的WordPress帖子
发布时间:2020-12-13 13:20:55 所属栏目:PHP教程 来源:网络整理
导读:我在$_REQUEST中获得post_title,post_content和其他东西以及图像文件.我想将所有这些保存为wordpress数据库中的帖子.我在我的页面上 ?phprequire_once("wp-config.php");$user_ID; //getting it from my function$post_title = $_REQUEST['post_title'];$pos
我在$_REQUEST中获得post_title,post_content和其他东西以及图像文件.我想将所有这些保存为wordpress数据库中的帖子.我在我的页面上
<?php require_once("wp-config.php"); $user_ID; //getting it from my function $post_title = $_REQUEST['post_title']; $post_content = $_REQUEST['post_content']; $post_cat_id = $_REQUEST['post_cat_id']; //category ID of the post $filename = $_FILES['image']['name']; //I got this all in a array $postarr = array( 'post_status' => 'publish','post_type' => 'post','post_title' => $post_title,'post_content' => $post_content,'post_author' => $user_ID,'post_category' => array($category) ); $post_id = wp_insert_post($postarr); ?> 这会将数据库中的所有内容都作为post发送,但我不知道如何添加附件及其post meta. 我怎样才能做到这一点?有谁能够帮我?我真的很困惑,并花了几天时间试图解决这个问题.
要添加附件,请使用wp_insert_attachment():
http://codex.wordpress.org/Function_Reference/wp_insert_attachment 例: <?php $wp_filetype = wp_check_filetype(basename($filename),null ); $attachment = array( 'post_mime_type' => $wp_filetype['type'],'post_title' => preg_replace('/.[^.]+$/','',basename($filename)),'post_content' => '','post_status' => 'inherit' ); $attach_id = wp_insert_attachment( $attachment,$filename,37 ); // you must first include the image.php file // for the function wp_generate_attachment_metadata() to work require_once(ABSPATH . "wp-admin" . '/includes/image.php'); $attach_data = wp_generate_attachment_metadata( $attach_id,$filename ); wp_update_attachment_metadata( $attach_id,$attach_data ); ?> 要添加元数据,请使用wp_update_attachment_metadata(): http://codex.wordpress.org/Function_Reference/wp_update_attachment_metadata <?php wp_update_attachment_metadata( $post_id,$data ) ?> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |