如何在附件数组路径中传递变量?

时间:2013-11-11 14:13:05

标签: wordpress email woocommerce

如何在我尝试传递'.$img_post.'的代码末尾看到的附件路径中传递变量,如果写入145566.png就可以了,但是下面的代码对我不起作用。

  $attachments = array(  '/home2/rahulr/public_html/cutting- edge/wordpress_theme/user_templates/'.$img_post.'' );

1 个答案:

答案 0 :(得分:1)

您的语法不正确,以下应该有效(假设$img_post实际上包含所需的值):

$attachments = array( '/path/to/' . $img_post );