Artikel Directory
vanwegeWordPress artikel automatische ankertekst plugin Automatische interne links voor SEODe automatische ankertekstfunctie van het label wordt niet ondersteund.
Als u ankertekst voor tagzoekwoorden kunt toevoegen, kan dit niet alleenSEOOptimaliseer onze interne links en laat gebruikers ook verwijzen naar gerelateerde artikelen.
hood.discountHoe voegen tags automatisch interne links toe?

Dus hoe zorg je ervoor dat de artikelen op de WordPress-website automatisch interne tags toevoegen?
Eigenlijk hoeven we alleen maarfunctions.phpVoeg in het bestand een stukje php-code toe om dit te bereiken.
WordPress Post Content Tags Voeg automatisch ankertekst toe binnenste links
/**
* WordPress文章内容标签自动加锚文本内链
* https://www.chenweiliang.com/cwl-27651.html
**/
function wptag_auto_add_anchor_text_link($content){
$limit = 1; // 设置WordPress文章同一个标签,自动添加几次内链?
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
$link = get_tag_link($tag->term_id);
$keyword = $tag->name;
$cleankeyword = stripslashes($keyword);
$url = '<a target="_blank" href="'.$link.'" title="'.str_replace('%s', addcslashes($cleankeyword, '$'), __('View all posts in %s')).'">'.addcslashes($cleankeyword, '$').'</a>';
$regEx = '\'(?!((<.*?)|(<a.*?)))('. $cleankeyword . ')(?!(([^<>]*?)>)|([^>]*?</a>))\'s';
$content = preg_replace($regEx,$url,$content,$limit);
}
}
return $content;
}
add_filter( 'the_content', 'wptag_auto_add_anchor_text_link', 1 );Code toevoegen aan WordPressThemafunctions.phpLees na het bestand ons artikel nog eens.
Is er een automatische toevoeging van interne links wanneer de tag-zoekwoorden die we toevoegen verschijnen?
Hoop Chen Weiliang Blog ( https://www.chenweiliang.com/ ) gedeeld "Hoe interne links in WordPress in te stellen? Voeg automatisch ankertekstoptimalisatie toe aan artikelinhoudstags", wat handig voor u is.
Welkom om de link van dit artikel te delen:https://www.chenweiliang.com/cwl-27651.html
Om nog meer verborgen trucs🔑 te ontgrendelen, nodigen we je van harte uit om lid te worden van ons Telegram-kanaal!
Deel en like als je het leuk vindt! Jouw aandelen en likes zijn onze voortdurende motivatie!