0
私はこのコードを苦労しています。最後のタグの後にドットがないように、どのラインを書きますか?タグの末尾にあるドットの問題
<?php
$id = get_sub_field('case_link');
$posttags = get_the_tags($id);
$tags = '';
if ($posttags) {
foreach ($posttags as $tag) {
$tags .= $tag->name . ' · ';
}
}
$tags = trim(substr($tags, 0, -2));
?>
このコードはどこにありますか? –