阻止报价标签内容不同

时间:2015-07-12 08:07:12

标签: php wordpress twitter-bootstrap

我有一个使用Bootstrap 3框架的Wordpress网站

的functions.php

function split_content() {
    global $more;
    $more = true;
    $content = preg_split('/<span id="more-\d+"><\/span>/i', get_the_content('more'));
    // first content section in column1
    $ret = '<div id="column1" class="col-md-6"><p>'. array_shift($content). '</p></div>';
    // remaining content sections in column2
    if (!empty($content)) $ret .= '<div id="column2" class="col-md-6"><p>'. implode($content). '</p></div>';
    return apply_filters('the_content', $ret);
}

它会在“更多标记”之后拆分内容。并将其分为两个单独的列。

但是,当我在每个列的开头添加一个块引用时(每列中有一个段落,每个列上面都有一个块引用),第二个列块引用工作正常,但不是第一个。

输出图片(每列的块引用不同)

enter image description here

0 个答案:

没有答案