Suchmaschinenoptimierung (SEO) ist für jeden Blog und jede Website wichtig. Deshalb bietet ThirstyAffiliates Funktionen, um zusätzliche rel-Tags zu Ihren Affiliate-Links hinzuzufügen, damit Sie zusätzliche Attribute über diese Links steuern können.
While we have a dedicated option for “nofollow” that doesn't always stop your links getting indexed in the SERPs these days.
If you want to be sure that your affiliate links have the least chance of getting indexed in the search engine result pages, you need to put a rel=”noindex” to your affiliate links.
There are two options on how to add the “noindex” rel tag:
1. Globally add the “noindex” rel tag
In der ThirstyAffiliates > Einstellungen > Verknüpfungsdarstellunghaben wir eine Einstellung namens Zusätzliche rel-Attribut-Tags where you can add the “noindex” rel tag to prevent all of your affiliates links from getting indexed on search engines.
2. Apply “noindex” rel tag to your individual links
Alternativ dazu gibt es auch die Link-Optionen located in your individual affiliate link settings. This gives you an option to choose which specific affiliate links you want to add the “noindex” rel tag to.
HINWEIS: Sobald diese Einstellung vorgenommen wurde, müssen Sie einige Tage warten, bis Google und andere Suchmaschinen Ihre Website neu gecrawlt und indexiert haben.
Es ist erwähnenswert, dass Sie auch sicherstellen müssen, dass der Googlebot nicht blocked so they can crawl your site so they can find the rel=”noindex” tags. Please make sure that you nicht über robots.txt und die Bot Crawl Blocker Script aktivieren ist unkontrolliert auf ThirstyAffiliates > Einstellungen > Allgemein.
3. Add ‘noindex' to HTTP headers on redirect
Google sometimes will not view rel=”noindex” as a valid way to tell if the page should be shown in their index or not.
Die neueste und zuverlässigste Methode, um sicherzustellen, dass Ihre Partnerlinks nicht indiziert werden, ist das Hinzufügen von noindex zu den HTTP-Antwort-Headern während der Umleitung.
Dieser Codeschnipsel erfüllt diese Aufgabe:
function ta_add_noindex_headers() {
header( 'X-Robots-Tag: noindex, nofollow' );
}
add_action( 'ta_before_link_redirect' , 'ta_add_noindex_headers' );
Sie müssen dieses Snippet in Ihre functions.php oder in ein Drop-in-Plugin einfügen.
In Zukunft werden wir dies als Funktion in unser Plugin aufnehmen.