Make WordPress Core

Ticket #18660: canonical.5.patch

File canonical.5.patch, 2.4 KB (added by joostdevalk, 13 years ago)

Canonical Patch v5

  • wp-includes/link-template.php

     
    23552355}
    23562356
    23572357/**
    2358  * Output rel=canonical for singular queries
     2358 * Output rel=canonical
    23592359 *
    23602360 * @package WordPress
    23612361 * @since 2.9.0
    23622362*/
    23632363function rel_canonical() {
    2364         if ( !is_singular() )
    2365                 return;
     2364        $link = false;
     2365       
     2366        if ( is_singular() ) {
     2367                $link = get_permalink( get_queried_object() );
     2368                if ( get_query_var('page') > 1 ) {
     2369                        if ( !$wp_rewrite->using_permalinks() ) {
     2370                                $link = add_query_arg( 'page', get_query_var('page'), $link );
     2371                        } else {
     2372                                $link = user_trailingslashit( trailingslashit( $link ) . get_query_var( 'page' ) );
     2373                        }
     2374                }
     2375        } else {
     2376                if ( is_front_page() ) {
     2377                        $link = home_url( '/' );
     2378                } else if ( is_home() && "page" == get_option('show_on_front') ) {
     2379                        $link = get_permalink( get_option( 'page_for_posts' ) );
     2380                } else if ( is_tax() || is_tag() || is_category() ) {
     2381                        $term = get_queried_object();
     2382                        $link = get_term_link( $term, $term->taxonomy );
     2383                } else if ( is_post_type_archive() ) {
     2384                        $link = get_post_type_archive_link( get_post_type() );
     2385                } else if ( is_author() ) {
     2386                        $link = get_author_posts_url( get_query_var('author') );
     2387                } else if ( is_archive() ) {
     2388                        if ( is_date() ) {
     2389                                if ( is_day() ) {
     2390                                        $link = get_day_link( get_query_var('year'), get_query_var('monthnum'), get_query_var('day') );
     2391                                } else if ( is_month() ) {
     2392                                        $link = get_month_link( get_query_var('year'), get_query_var('monthnum') );
     2393                                } else if ( is_year() ) {
     2394                                        $link = get_year_link( get_query_var('year') );
     2395                                }                                               
     2396                        }
     2397                }
     2398               
     2399                if ( $link && get_query_var('paged') > 1 ) {
     2400                        global $wp_rewrite;
     2401                        if ( !$wp_rewrite->using_permalinks() ) {
     2402                                $link = add_query_arg( 'paged', get_query_var('paged'), $link );
     2403                        } else {
     2404                                $link = user_trailingslashit( trailingslashit( $link ) . trailingslashit( $wp_rewrite->pagination_base ) . get_query_var('paged') );
     2405                        }
     2406                }
     2407        }
    23662408
    2367         global $wp_the_query;
    2368         if ( !$id = $wp_the_query->get_queried_object_id() )
    2369                 return;
    2370 
    2371         $link = get_permalink( $id );
    2372         echo "<link rel='canonical' href='$link' />\n";
     2409        $link = apply_filters( 'rel_canonical', $link );
     2410       
     2411        if ( $link )
     2412                echo "<link rel='canonical' href='" . esc_attr( $link ) . "' />\n";
    23732413}
    23742414
    23752415/**
     
    24852525        }
    24862526}
    24872527
    2488 ?>
     2528?>
     2529 No newline at end of file