Jagjeet Kumar
Jagjeet Kumar

Reputation: 29

How to remove default text written below body tag in wordpress?

I am facing a problem . As you can see "http://hair-on-demand.com/" a text "page-content" is written in the left-top . I checked header.php but there is nothing written . Anyone knows from where this text is generating ?

Upvotes: 1

Views: 603

Answers (1)

Will Haley
Will Haley

Reputation: 265

Are you using an seo plugin or something along that line b/c the following html is getting injected into <head></head>

<html>
    <head>
        <meta name="msvalidate.01" content="96AFF80E69D87368573FAEDC4FB70ED1" />
        <title>Your SEO optimized title</title>
    </head>
    <body>
        page contents
    </body>
</html>

If you are I would disable that plugin or setting in the theme.

Upvotes: 2

Related Questions