WP “classic” HTML editor doesn’t show all HTML tags
-
I’m trying to migrate an old hand-coded HTML site into a series of WordPress Posts on a new site. I created five Posts by logging into an Editor account, then copying and pasting the old pages into the standard WordPress rich-text editor; that mostly works well. However, some of the old HTML needs cleanup, and I’d like to edit it from within WordPress. When I go to the “admin” account to edit, the HTML editor doesn’t show all of the HTML code. At least, it doesn’t show the p and /p tags — and possibly other tags too. Here are details:
I’m running WordPress 2.0.4. From the “admin” account under Users -> Your Profile, I’ve unchecked the bottom checkbox; this gives me the “classic” editor. When I open the Post I want to edit, I see code like this (between the dashed lines) in the browser window:
——–START OF EDITOR WINDOW EXCERPT
<a name="something"></a>This is the first paragraph in the Post. Blah blah yadda yadda. Here is <a href="https://somewhere.com/">a link</a>.
---BLANK LINE HERE---
<a name="another"></a>This is the second paragraph in the Post.
——–END OF EDITOR WINDOW EXCERPTThe p and /p tags seem to be missing. But, if I open the Post in a Firefox window, then use the browser’s “View Source” command, I see code that includes the p and /p tags:
——–START OF “VIEW SOURCE” EXCERPT
<p><a name="something"></a>This is the first paragraph in the Post. Blah blah yadda yadda. Here is <a href="https://somewhere.com/">a link</a>.</p>
<p><a name="another"></a>This is the second paragraph in the Post.</p>
——–END OF “VIEW SOURCE” EXCERPTHow can I see and edit all of the HTML code that’s sent to people who read the post? (I’m not talking about editing the Theme or the left/right margins, just the actual text of the Post.)
Thanks,
Jerry
- The topic ‘WP “classic” HTML editor doesn’t show all HTML tags’ is closed to new replies.