mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 17:48:01 +01:00
get_home_path() improvements. Props akd907. fixes #9246
git-svn-id: http://svn.automattic.com/wordpress/trunk@11187 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7186506de4
commit
14177ba3ef
@ -67,11 +67,12 @@ function get_file_description( $file ) {
|
|||||||
*/
|
*/
|
||||||
function get_home_path() {
|
function get_home_path() {
|
||||||
$home = get_option( 'home' );
|
$home = get_option( 'home' );
|
||||||
if ( $home != '' && $home != get_option( 'siteurl' ) ) {
|
$siteurl = get_option( 'siteurl' );
|
||||||
$home_path = parse_url( $home );
|
if ( $home != '' && $home != $siteurl ) {
|
||||||
$home_path = $home_path['path'];
|
$wp_path_rel_to_home = str_replace($home, '', $siteurl); /* $siteurl - $home */
|
||||||
$root = str_replace( $_SERVER["PHP_SELF"], '', $_SERVER["SCRIPT_FILENAME"] );
|
$pos = strpos($_SERVER["SCRIPT_FILENAME"], $wp_path_rel_to_home);
|
||||||
$home_path = trailingslashit( $root.$home_path );
|
$home_path = substr($_SERVER["SCRIPT_FILENAME"], 0, $pos);
|
||||||
|
$home_path = trailingslashit( $home_path );
|
||||||
} else {
|
} else {
|
||||||
$home_path = ABSPATH;
|
$home_path = ABSPATH;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user