2014-02-13 69 views
0

我設置了一個WordPress前端提交表單後,一切工作正常,當我插入內容嵌入圖像使用IMG類=「aligncenter

下面是如何我目前的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" /> 

圖片鏈接整合,這是$ I d

伊夫試圖建立工程,以在一定程度上除了

$imageurl = "img class=aligncenter src="; 
$imageurl1 = "<"; 
$imageurl2 = ">"; 

$my_post['post_content'] = $imageurl1.$imageurl.$id.$imageurl2; 

任何幫助理解所述「aligncenter」下面

回答

1
$imageurl = "img class='aligncenter' alt='' src='"; 
$imageurl1 = "<"; 
$imageurl2 = "'>"; 

$my_post['post_content'] = $imageurl1.$imageurl.$id.$imageurl2;