如何在我尝试传递'.$img_post.'
的代码末尾看到的附件路径中传递变量,如果写入145566.png就可以了,但是下面的代码对我不起作用。
$attachments = array( '/home2/rahulr/public_html/cutting- edge/wordpress_theme/user_templates/'.$img_post.'' );
答案 0 :(得分:1)
您的语法不正确,以下应该有效(假设$img_post
实际上包含所需的值):
$attachments = array( '/path/to/' . $img_post );