[Plugin: Automatic SEO Links] I found a Warning in this plugin
-
This plug in creates links like as follow. But W3C says error for this.
< a href=”https://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=”https://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].”;
- The topic ‘[Plugin: Automatic SEO Links] I found a Warning in this plugin’ is closed to new replies.