why doesnt my formatting work in my wisiwig editor?

The Visual editor is behaving as-configured. You will either need to pass a custom configuration setting to tell TinyMCE not to ignore multiple line-breaks, or else you will need to use the HTML editor if you want to add line-breaks in the manner that you’re currently using.

How to remove filter apostrophe and single quotation

If I understand correctly, you’re only wanting to change the behavior of wptexturize within the href attribute of links. Here’s how I would go about that problem: Don’t mess with the default behavior of wptexturize, that function is used in a lot of different filters and its behavior is pretty useful. And definitely don’t hack … Read more

Changing the code format for wordpress

First thing’s first, we need to get our globals. If you’re in The Loop you can remove the global $post in my code, if you’re outside The Loop $post may not be what you expect it to be. We’ll always need the global $userpro though. <?php global $userpro, $post; ?> <div class=”myrelatedauthor”> <a href=”https://wordpress.stackexchange.com/questions/180751/<?php echo … Read more

Trim content without stripping formatting

Well, as far I understood you want to remove all the HTML tags from the trimmed the_content. Right??? Try wp_filter_nohtml_kses function. Hope that’s going to work. Here is the full code- <?php $trimmed = wp_filter_nohtml_kses( wp_trim_words( get_the_content(), 55, “” ) ); ?> <?php echo $trimmed; ?>

Formatting poetry in wordpress

I hope I’ve understood your question correctly. As you probably gathered, if you are in the visual editor, hitting return creates a new paragraph, but hitting Shift-return creates a line break. A couple of possible solutions: A very basic one. You should be able to make specific indents with a mixture of lines with line … Read more