Administrators admin Geschrieben 17. Oktober Administrators Teilen Geschrieben 17. Oktober fter testing multiple niches, hacks and so on, i recently discovered a simple hack that i use on my website that is not even 2 months old. It's working very good and it has generated very good trafic. The secret? Keyword Intent What is KW Intent from my point of view? For example you have the main keyword "X". This has a search volume of 200K (example). The keyword is very difficult to rank, and most of the traffic is coming from EN sites. But what people forgot is that X is searched in multiple countries. So, to target and get a lot of trafic of the KW "X", i am gonna use foreign languages, where "X" is popular too. After this the keyword will become "X in foreign language". This way, i manage to rank always in top 10 and drive crazy traffic with minimum effort. (Keep in mind all my articles are 40-100 words long). Here are some results: But, for most of the times, a single keyword can be popular in more countries. So, i am gonna explain how to target 2 different languages with a simple script. First of all, be sure your Wordpress Tags can be indexable. As always, try to write the article in your main language. Then, in Yoast SEO modify the Tags Page Title and meta description in a second foreign language, that is gonna look good with the keyword you try to rank for. Add This script in functions.php of your WP Theme: PHP: function generate_links() { if (is_single()) { global $post; $current_page = home_url($wp->request); $current_language = get_locale(); $tags = get_the_tags($post->ID); echo '<link rel="alternate" href="' . esc_url($current_page) . '/" hreflang="' . esc_url($current_language) . '" />' . "\n"; echo '<link rel="alternate" href="' . esc_url($current_page) . '/" hreflang="x-default" />' . "\n"; if ($tags) { $first_tag = $tags[0]; $first_link = get_tag_link($tag->term_id); echo '<link rel="alternate" href="' . esc_url($first_link) .'" hreflang="tr" />' . PHP_EOL; } } } add_action('wp_head', 'generate_links'); Now, you will rank for a keyword in 2 different languages. I am not sure if i explained good at all, but you will catch it. If you think i helped you, a simple reaction is enought. Do not forget to modify the this line: PHP: echo '<link rel="alternate" href="' . esc_url($first_link) .'" hreflang="tr" />' . PHP_EOL; Replace "TR" with your second language you want to target. With this, i managed to completly remove Multilingual Plugins. For me, it has worked like a charm, give it a try and let me know your results. Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
Empfohlene Beiträge
Erstelle ein Benutzerkonto oder melde Dich an, um zu kommentieren
Du musst ein Benutzerkonto haben, um einen Kommentar verfassen zu können
Benutzerkonto erstellen
Neues Benutzerkonto für unsere Community erstellen. Es ist einfach!
Neues Benutzerkonto erstellenAnmelden
Du hast bereits ein Benutzerkonto? Melde Dich hier an.
Jetzt anmelden