Formatting error while publishing a blog from Microsoft Word

I posted this question on wodpress.stackexchange.com without receiving an answer.

I realized that this could be a programming problem in PHP.

I am trying to post a blog post on the Wordpress website from Microsoft Live Writer. Here is an example of text that I added to Microsoft, which I posted as well.

" Temporary Blog Post
I am adding a temporary blog post here 
Let’s see how it goes
Thanks"

However, when I posted the post, it looked like

/pI am adding a temporary blog post here
/ppLet’s see how it goes
/ppThanks

Pay attention to the tags \ppthat are added to the text.

Is any idea causing a formatting error? I thought that when you publish from Microsoft Word or Microsoft Live Writer, it should look the same as in Microsoft Word / Live Writer.

. , , Windows Live Writer ..

+5
3

WordPress "the_content" - , , ( p-). , the_content:

<?php remove_filter (‘the_content’, ‘wpautop’); ?>

cleanup_shortcode_fix(), .

,

.

+5

, , , , , , Wordpress ?

wordpress, , :

   remove_filter ('the_content', 'wpautop');

functions.php

, , Ultimate TinyMCE - , .

+2

, , wordpress.

.

OR, if you do not want to use notepad,

The editor has a button that allows you to embed content directly from Word. This removes the special Word formatting used to place content on the page and will work well on your site. (The button is located in the "Kitchen Sink" in the Visual Editor and is surrounded in the image below.) Alt text

enter image description here

+1
source

All Articles