In the
view in Wordpress when I press
it appears as if a new paragraph is started (see image 1). But when I go to the 'Text' tab, no
tag can be found (see image 2).
<img src=" " alt="enter image description here">
<img src=" " alt="enter image description here">
I've installed the TinyMCE plugin because I thought it would provide me more control.
I also tried adding a codepiece to the
file of my template (see here: <a href="http://www.adammershon.com/stop-wordpress-from-removing-br-and-p-tags/" rel="nofollow noreferrer">http://www.adammershon.com/stop-wordpress-from-removing-br-and-p-tags/</a>)
But I can't create paragraphs by entering text on the
tab, the only way is to insert p tags them manually on the
view, which is unacceptable to my client.
Also when I press shift+enter on the
tab it goes to the next line, but on the
there's no
tag.
<strong>Important note</strong>
I've integrated my Wordpress with ASP.NET where I directly request the content from the Wordpress database. So the rendering of the HTML is NOT done by Wordpress.
How can I have Wordpress add the paragraph tags when only editing on the
tab?
(I did not place this post in webapps.stackexchange.com because fixing my issue most likely requires some programming.)
Code:
Visual
Code:
<enter>
Code:
<p>
<img src=" " alt="enter image description here">
<img src=" " alt="enter image description here">
I've installed the TinyMCE plugin because I thought it would provide me more control.
I also tried adding a codepiece to the
Code:
functions.php
But I can't create paragraphs by entering text on the
Code:
Visual
Code:
Text
Also when I press shift+enter on the
Code:
Visual
Code:
Text
Code:
<br/>
<strong>Important note</strong>
I've integrated my Wordpress with ASP.NET where I directly request the content from the Wordpress database. So the rendering of the HTML is NOT done by Wordpress.
How can I have Wordpress add the paragraph tags when only editing on the
Code:
Visual
(I did not place this post in webapps.stackexchange.com because fixing my issue most likely requires some programming.)