• Resolved jon182

    (@brody182)


    Hello, A few problems that I found in SEO framework, All the pages titles display
    &#x2d instead of the – dash. In the source code.

    <meta property="og:title" content="Category: EXERCISE AND FITNESS &#x2d Apical Health" />

    second, my sitemap.xml does not display all the posts link URLs, only a few.

    • This topic was modified 4 years, 4 months ago by jon182.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Sybre Waaijer

    (@cybr)

    Hello!

    As you might’ve noticed before you edited your topic, &#x2d; converts correctly to a hyphen ??

    The <title> tag is an “escalable raw text element“, which means it can contain any HTML entity. But, it’s a “normal element” in XHTML, which means we should escape its contents, just to be sure. This causes a host of issues we had to resolve–one method we use is “texturization”, which transforms some entities to other ones to preserve their meaning.

    But, one of these transformations converts a hyphen to a dash:

    Hyphen: -
    Dash:   –

    So, we use this special &#x2d; entity to bypass that transformation, without losing its meaning. It should not have any effect on the SERP display or even your browser tab’s title output.

    As for the sitemap not displaying all links–make sure all posts you want in there are indexable and can be marked up via The SEO Framework.

    • This reply was modified 4 years, 4 months ago by Sybre Waaijer. Reason: Even bbPress has its texturization issues
    • This reply was modified 4 years, 4 months ago by Steven Stern (sterndata).
    Thread Starter jon182

    (@brody182)

    you need a hyphen in the page title “&hyphen;” it needs to display like this “-” in the source code otherwise google can’t read it.

    Plugin Author Sybre Waaijer

    (@cybr)

    Google can read HTML entities and uses UTF-8 decoding; nowadays, they can even render and interpret JavaScript.

    Here is a depiction of a recently indexed article with the &#x2d; entity:
    HTML hex entity support Google

    You can try it yourself with this real-world example query:
    site:https://theseoframework.com/em-changelog/2-4-0-linguistic-seo/

    If you have examples where this doesn’t work as intended, please do share the links. Thank you!

    Plugin Author Sybre Waaijer

    (@cybr)

    Hello again ??

    Please sign up with Google Search Console, submit your sitemap there, and see the coverage of your pages in a few days.
    https://search.google.com/search-console/about

    You can inspect each URL, too, so you’ll learn why Google is behaving this way.
    https://support.google.com/webmasters/answer/9012289

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘a few problems’ is closed to new replies.