Make WordPress Core


Ignore:
Timestamp:
10/06/2006 12:34:58 AM (19 years ago)
Author:
ryan
Message:

Relativize links. Props mdawaffe.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/formatting.php

    r4320 r4348  
    10711071}
    10721072
     1073function wp_make_link_relative( $link, $base = '' ) {
     1074    if ( !$base )
     1075        $base = get_option( 'home' );
     1076    if ( 0 === strpos($link, $base) )
     1077        $link = substr_replace($link, '', 0, strlen($base));
     1078    return $link;
     1079}
    10731080?>
Note: See TracChangeset for help on using the changeset viewer.