我正在设置一个Wordpress前端提交表单发布,一切正常,除非我插入内容
以下是我当前的php的外观
$my_post = array();
$my_post['post_title'] = $newid;
$my_post['post_content'] = $id
$my_post['post_author'] = 1;
$my_post['post_status'] = publish;
$my_post['post_category'] = array($a);
// Insert the post into the database
$post_id = wp_insert_post($my_post);
wp_redirect( site_url()."?p=$post_id" ); exit();
[' post_content']部分目前仅发布图片链接,但我试图将其与下面的内容相结合
<img class="aligncenter" alt="" src="http://domain.com/image/image.gif" />
图片链接为$ id
我已尝试设置以下功能,除了&#34; aligncenter&#34;
$imageurl = "img class=aligncenter src=";
$imageurl1 = "<";
$imageurl2 = ">";
$my_post['post_content'] = $imageurl1.$imageurl.$id.$imageurl2;
感谢任何帮助
答案 0 :(得分:1)
$imageurl = "img class='aligncenter' alt='' src='";
$imageurl1 = "<";
$imageurl2 = "'>";
$my_post['post_content'] = $imageurl1.$imageurl.$id.$imageurl2;