Make WordPress Core

Ticket #18660: canonical.3.patch

File canonical.3.patch, 2.1 KB (added by joostdevalk, 13 years ago)

Canonical Patch v3

  • 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                        $link = user_trailingslashit( trailingslashit( $link ) . get_query_var( 'page' ) );
     2370        } else {
     2371                if ( is_front_page() ) {
     2372                        $link = home_url( '/' );
     2373                } else if ( is_home() && "page" == get_option('show_on_front') ) {
     2374                        $link = get_permalink( get_option( 'page_for_posts' ) );
     2375                } else if ( is_tax() || is_tag() || is_category() ) {
     2376                        $term = get_queried_object();
     2377                        $link = get_term_link( $term, $term->taxonomy );
     2378                } else if ( is_post_type_archive() ) {
     2379                        $link = get_post_type_archive_link( get_post_type() );
     2380                } else if ( is_archive() ) {
     2381                        if ( is_date() ) {
     2382                                if ( is_day() ) {
     2383                                        $link = get_day_link( get_query_var('year'), get_query_var('monthnum'), get_query_var('day') );
     2384                                } else if ( is_month() ) {
     2385                                        $link = get_month_link( get_query_var('year'), get_query_var('monthnum') );
     2386                                } else if ( is_year() ) {
     2387                                        $link = get_year_link( get_query_var('year') );
     2388                                }                                               
     2389                        }
     2390                }
     2391               
     2392                if ( $link && get_query_var('paged') > 1 ) {
     2393                        global $wp_rewrite;
     2394                        $link = user_trailingslashit( trailingslashit( $link ) . trailingslashit( $wp_rewrite->pagination_base ) . get_query_var('paged') );
     2395                }
     2396        }
    23662397
    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";
     2398        $link = apply_filters( 'rel_canonical', $link );
     2399       
     2400        if ( $link )
     2401                echo "<link rel='canonical' href='" . esc_url( $link ) . "' />\n";
    23732402}
    23742403
    23752404/**
     
    24852514        }
    24862515}
    24872516
    2488 ?>
     2517?>
     2518 No newline at end of file