function remove_backspace( $the_content ) {
$backspace = '/[\x08]/';
$the_content = preg_replace ( $backspace , '' , $the_content ) ;
return $the_content;
}
add_filter ( 'the_content' , 'remove_backspace' ) ;
function remove_backspace( $the_content ) {
$backspace = '/[\x08]/';
$the_content = preg_replace ( $backspace , '' , $the_content ) ;
return $the_content;
}
add_filter ( 'the_content' , 'remove_backspace' ) ;