Hoe interne links in WordPress in te stellen? Tags voor artikelinhoud voegen automatisch ankertekstoptimalisatie toe

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.

WordPressHoe voegen tags automatisch interne links toe?

Hoe interne links in WordPress in te stellen? Tags voor artikelinhoud voegen automatisch ankertekstoptimalisatie 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

Welkom op het Telegram-kanaal van Chen Weiliang's blog voor de laatste updates!

🔔 Wees de eerste die de waardevolle "ChatGPT Content Marketing AI Tool Usage Guide" in de bovenste kanaaldirectory ontvangt! 🌟
📚 Deze gids bevat enorme waarde, 🌟Dit is een zeldzame kans, mis hem niet! ⏰⌛💨
Deel en like als je wilt!
Uw delen en likes zijn onze voortdurende motivatie!

 

发表 评论

Uw e-mailadres wordt niet gepubliceerd. 必填 项 已 用 * 标注

scroll naar boven