码迷,mamicode.com
首页 > 其他好文 > 详细

WordPress SEO优化:纯代码添加canonical标签

时间:2021-02-02 11:12:27      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:global   word   首页   post   集中   gsl   添加   trail   cti   

最近看了一个国外大佬的技术文章,我受益匪浅,为网站添加添加canonical标签是SEO优化中非常重要的一步,rrel="canonical"可以解决因网址不同但内容重复,从而造成权重分散的问题,目前百度、Google、雅虎、微软等搜索引擎都已支持此标签。

例子演示

  1. https://www.nicebrian.com/

这两个网址都是玩个机吧网站的首页,为了避免首页权重的分散,应该通过rrel="canonical"标签告诉搜索引擎,这两个页面的权重要集中在第一个网址。

  1. <link rel="canonical" href="https://www.nicebrian.com/" />

具体的做法是将上述标签添加至这两个页面的/head标签前。

添加方式

分享2种纯代码为 WordPress 首页、分类、标签和文章页自动添加 canonical 标签的方法,将下面任意一份代码添加到 WordPress 主题 functions.php 文件中。

方法一

  1. //纯代码添加canonical标签,集中页面权限
  2. //https://www.nicebrian.com/12.html
  3. remove_action( ‘wp_head‘, ‘rel_canonical‘ );
  4. function cccitu_archive_link( $paged = true ) {
  5. $link = false;
  6. if ( is_front_page() ) {
  7. $link = home_url( ‘/‘ );
  8. } else if ( is_home() && "page" == get_option(‘show_on_front‘) ) {
  9. $link = get_permalink( get_option( ‘page_for_posts‘ ) );
  10. } else if ( is_tax() || is_tag() || is_category() ) {
  11. $term = get_queried_object();
  12. $link = get_term_link( $term, $term->taxonomy );
  13. } else if ( is_post_type_archive() ) {
  14. $link = get_post_type_archive_link( get_post_type() );
  15. } else if ( is_author() ) {
  16. $link = get_author_posts_url( get_query_var(‘author‘), get_query_var(‘author_name‘) );
  17. } else if ( is_single() ) {
  18. $link = get_permalink( $id );
  19. } else if ( is_archive() ) {
  20. if ( is_date() ) {
  21. if ( is_day() ) {
  22. $link = get_day_link( get_query_var(‘year‘), get_query_var(‘monthnum‘), get_query_var(‘day‘) );
  23. } else if ( is_month() ) {
  24. $link = get_month_link( get_query_var(‘year‘), get_query_var(‘monthnum‘) );
  25. } else if ( is_year() ) {
  26. $link = get_year_link( get_query_var(‘year‘) );
  27. }
  28. }
  29. }
  30. if ( $paged && $link && get_query_var(‘paged‘) > 1 ) {
  31. global $wp_rewrite;
  32. if ( !$wp_rewrite->using_permalinks() ) {
  33. $link = add_query_arg( ‘paged‘, get_query_var(‘paged‘), $link );
  34. } else {
  35. $link = user_trailingslashit( trailingslashit( $link ) . trailingslashit( $wp_rewrite->pagination_base ) . get_query_var(‘paged‘), ‘archive‘ );
  36. }
  37. }
  38. echo ‘<link rel="canonical" href="‘.$link.‘" />‘;
  39. }
  40. add_action(‘wp_head‘, ‘cccitu_archive_link‘);

方法二

  1. //纯代码添加canonical标签,集中页面权限
  2. //https://www.nicebrian.com/12.html
  3. remove_action( ‘wp_head‘, ‘rel_canonical‘ );
  4. function cccitu_rel_canonical() {
  5. global $post;
  6. if (is_single() || is_page()) {
  7. echo "<link rel=\"canonical\" href=\"" . get_permalink( $post->ID ) . "\" />\n";
  8. }
  9. if (is_home()) {
  10. echo "<link rel=\"canonical\" href=\"".home_url("/")."\" />\n";
  11. }
  12. if (is_category() || is_category() && is_paged()) {
  13. echo "<link rel=\"canonical\" href=\"".get_category_link(get_query_var(‘cat‘))."\" />\n";
  14. }
  15. if (is_tag() || is_tag() && is_paged()) {
  16. echo "<link rel=\"canonical\" href=\"".get_term_link(get_query_var(‘tag‘), ‘post_tag‘)."\" />\n";
  17. }
  18. if (is_search() || is_search() && is_paged()) {
  19. echo "<link rel=\"canonical\" href=\"".get_search_link(get_query_var(‘search‘))."\" />\n";
  20. }
  21. if (is_author()) {
  22. echo "<link rel=\"canonical\" href=\"".get_option(‘home‘)."\" />\n";
  23. }
  24. if (is_date()) {
  25. echo "<link rel=\"canonical\" href=\"".get_option(‘home‘)."\" />\n";
  26. }
  27. }
  28. add_action(‘wp_head‘, ‘cccitu_rel_canonical‘);

WordPress SEO优化:纯代码添加canonical标签

标签:global   word   首页   post   集中   gsl   添加   trail   cti   

原文地址:https://www.cnblogs.com/xiaojuntest/p/14358435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!