| 1 | <?php
|
|---|
| 2 | /*
|
|---|
| 3 | Plugin Name: Absolute Relative Links
|
|---|
| 4 | Version: 1.2
|
|---|
| 5 | Plugin URI: http://mathibus.com/archives/2005/02/relative-links
|
|---|
| 6 | Description: When activated, this plugin filters WordPress' output, removing redundant stuff from on-site links.
|
|---|
| 7 | Author: Mathias Bynens
|
|---|
| 8 | Author URI: http://mathibus.com/
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | update_option('gzipcompression', 0);
|
|---|
| 12 |
|
|---|
| 13 | function mj_get_root($url) { // not everybody has his blog running from the root
|
|---|
| 14 | while(substr_count($url, '/') > 2) { // all we need is the :// from the protocol
|
|---|
| 15 | $array = explode('/', $url);
|
|---|
| 16 | array_pop($array);
|
|---|
| 17 | $url = implode('/', $array);
|
|---|
| 18 | }
|
|---|
| 19 | return $url;
|
|---|
| 20 | }
|
|---|
| 21 |
|
|---|
| 22 | function mj_relative_links($str) {
|
|---|
| 23 | global $feed;
|
|---|
| 24 | $url = mj_get_root(get_settings('siteurl'));
|
|---|
| 25 | /*
|
|---|
| 26 | Uncomment the following line, and replace "http://mathibus.com" with
|
|---|
| 27 | your untrailingslashed root URI to speed things up a little.
|
|---|
| 28 | Don't forget to remove the above line saying $url = get_root(get_settings('siteurl'));
|
|---|
| 29 | if you do so.
|
|---|
| 30 | */
|
|---|
| 31 | // $url = 'http://mathibus.com';
|
|---|
| 32 | $str = str_replace("'" . $url ."/", "'/", $str); // <a href="xtp://yoursite.com/whatever/">
|
|---|
| 33 | $str = str_replace('"' . $url . '/', '"/', $str); // <a href='xtp://yoursite.com/whatever/'>
|
|---|
| 34 | $str = str_replace('"' . $url . '"', '"/"', $str); // <a href="xtp://yoursite.com">
|
|---|
| 35 | $str = str_replace("'" . $url . "'", "'/'", $str); // <a href='xtp://yoursite.com">
|
|---|
| 36 | return $str;
|
|---|
| 37 | }
|
|---|
| 38 |
|
|---|
| 39 | if((!strstr($_SERVER['REQUEST_URI'], $url . '/wp-admin')) && (!$feed)) ob_start('mj_relative_links'); // do not filter in feeds or in admin section
|
|---|
| 40 |
|
|---|
| 41 | ?> |
|---|