Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

while writing a WordPress post, in visual mode there shows the line breaks in text editor but in HTML mode there is only &nbsp not BR tag.

How can i add BR tag at each line break instead of &nbsp by default ?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can use these code inside you functions.php to remove filter that remove line brakes

remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );

function my_tinymce_config( $init ) {
    $init['remove_linebreaks'] = false; 
    $init['convert_newlines_to_brs'] = true; 
    $init['remove_redundant_brs'] = false; 
    return $init;
}
add_filter('tiny_mce_before_init', 'my_tinymce_config');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.