この結果が欲しい:
<a href="path/to/something">This is a link! <span>with a span inside!</span></a>
これはリンクをレンダリングします:
$render = array(
'link' => array(
'#type' => 'link',
'#title' => t("This is a link!"),
'#href' => "path/to/something",
),
);
これがリンク内のスパンをレンダリングしないのはなぜですか?
$render = array(
'link' => array(
'#type' => 'link',
'#title' => t("This is a link!"),
'#href' => "path/to/something",
'span' => array(
'#type' => 'markup',
'#markup' => ' <span>with a span inside!</span>',
),
),
);
前もって感謝します!