array(
'href' => array(),
'target' => array(),
),
'
',
''
);
$text = wp_kses_post($text);
$text = preg_replace('@@si', '', $text);
$excerpt_length = 110;
$words = explode(' ', $text, $excerpt_length + 1);
if (count($words)> $excerpt_length) {
array_pop($words);
array_push($words, '[...]');
$text = implode(' ', $words);
}
echo wpautop( $text, true);
?>