我试图在wordpress系统上的PHP数组中显示一个特定的“字符串”。
我声明了一个变量$current_user->ID,
,它返回当前用户,例如“系统管理员”
我现在想尝试将它与数组中的普通文本结合起来,使文本动态化。
用简单的英语,我试图创建一些显示如下的东西:
发布者:current_user
这是我拥有的数组:
'post_title' => 'Posted By:' . $current_user->ID .'',
但我知道我所拥有的不正确。问题在于将纯文本和变量与引号连接起来。
有人可以帮忙吗?
更新 - 更多代码:
$post_id = wp_insert_post(
array(
'comment_status' => 'open',
'ping_status' => 'closed',
'post_author' => $current_user->ID,
'post_name' => $slug,
'post_title' => 'Posted By:' . $current_user->ID'',
'post_status' => 'publish',
'post_type' => 'post',
'post_content' => $_POST['quick-post-area']
)
);