Canonical URI for page on front. Props skeltoac. #2515

git-svn-id: https://develop.svn.wordpress.org/trunk@3853 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-06-07 23:30:09 +00:00
parent d672e3fc7f
commit 5f264096d8
1 changed files with 3 additions and 0 deletions

View File

@ -105,6 +105,9 @@ function get_page_link($id = false) {
$link = get_settings('home') . "/?page_id=$id";
}
if ( 'page' == get_option('show_on_front') && $id == get_option('page_on_front') )
$link = get_settings('home');
return apply_filters('page_link', $link, $id);
}