Forums

[resolved] [Plugin: Automatic SEO Links] I found a Warning in this plugin (1 post)

  1. sihhatdotbiz
    Member
    Posted 4 months ago #

    This plug in creates links like as follow. But W3C says error for this.

    < a href="http://www.sihhat.biz/sac-uzatma-ve-boyama.html"target="_parent"title="saç dökülmesi" >saç dökülmesi< /a >

    A link must be like as follow. Attention! space must be before title, target,rel:

    < a href="http://www.sihhat.biz/sac-uzatma-ve-boyama.html" target="_parent" title="saç dökülmesi" >saç dökülmesi < /a >

    To resolve this error. Find this:

    if ($link->type!="-") $replacement = $replacement.'target="'.$link->type.'"';
    if ($link->rel!="-") $replacement = $replacement.'rel="'.$link->rel.'"';
    $replacement = $replacement.'title="'.$link->anchortext.'" >'.$isFind[0].'';

    Then edit. like this:

    if ($link->type!="-") $replacement = $replacement.' target="'.$link->type.'"';
    if ($link->rel!="-") $replacement = $replacement.' rel="'.$link->rel.'"';
    $replacement = $replacement.' title="'.$link->anchortext.'" >'.$isFind[0].'';

Reply

You must log in to post.

About this Topic