txt_brk
unknown
php
4 years ago
586 B
8
Indexable
// ----------------------------------------------------------------------------------------------
// 18 - ZALAMOVÁNÍ TEXTU
// ----------------------------------------------------------------------------------------------
add_filter( 'the_content', 'dg_automatic_nbsp' );
add_filter( 'the_excerpt', 'dg_automatic_nbsp' );
function dg_automatic_nbsp( $content ) {
if (!is_admin()) {
$content = preg_replace("#(?:^|(?=\s))(.{1,3})(\s)+#i", "$1 ", $content);
return str_replace("<a ","<a ",$content);
}
else {
return $content;
}
}
Editor is loading...