我正在尝试从帖子中获取标记(只有一个标记),然后用该标记名创建一个新变量,但用破折号替换空格。
这是a到目前为止所拥有的,但我无法让它显示标记的值(带空格和不带空格),而不是“数组”。在下面的代码中,我现在只想让它显示为带破折号。
$posttags = get_the_tags();
$newname = str_replace(\' \', \'-\', $posttags);
if ($posttags) {
foreach ($posttags as $tag){
echo \'Post by: <a href="/meet-the-team/employees/\'. $newname .\'/">\'. $newname .\'</a>\';
}
}