我有一个函数创建了一个名为“content-wrapper”的 div。在特殊情况下,我需要在此 div 中添加其他类,并使用此功能进行了尝试:
function content_wrapper($function, $title = '', $first = false ) {
if ('open' != $function && 'close' != $function)
return;
if ('open' == $function) {
if ($first == true) {
genesis_markup( array(
'html5' => '<div %s>',
'xhtml' => '<div class="content-wrapper content-wrapper-first">',
'context' => 'content-wrapper content-wrapper-first',
) );
但输出是
<div class="content-wrappercontent-wrapper-first">
有谁知道为什么删除空格以及如何添加它?我什至将功能扩展到
function content_wrapper($function, $title = '', $args = '' ) {
$args 将是一个数组,我可以在其中传递其他类,但这不能正常工作。甚至 genesis_attr-content-wrapper 也无法正常工作,因为它向页面上的每个内容包装器添加了附加类。
有人有想法吗?
谢谢。