| @@ 30-33 (lines=4) @@ | ||
| 27 | if ( getenv('CUSTOM_CONSTANTS' ) ) { |
|
| 28 | define( 'AUTOPTIMIZE_CACHE_CHILD_DIR', '/c/ao/' ); |
|
| 29 | $pathname = WP_CONTENT_DIR . AUTOPTIMIZE_CACHE_CHILD_DIR; |
|
| 30 | if ( is_multisite() && apply_filters( 'autoptimize_separate_blog_caches', true ) ) { |
|
| 31 | $blog_id = get_current_blog_id(); |
|
| 32 | $pathname .= $blog_id . '/'; |
|
| 33 | } |
|
| 34 | define( 'AUTOPTIMIZE_CACHE_DIR', $pathname ); |
|
| 35 | ||
| 36 | $custom_site_url = 'http://localhost/wordpress'; |
|
| @@ 311-314 (lines=4) @@ | ||
| 308 | { |
|
| 309 | $pathname = self::get_pathname_base(); |
|
| 310 | ||
| 311 | if ( is_multisite() && apply_filters( 'autoptimize_separate_blog_caches', true ) ) { |
|
| 312 | $blog_id = get_current_blog_id(); |
|
| 313 | $pathname .= $blog_id . '/'; |
|
| 314 | } |
|
| 315 | ||
| 316 | return $pathname; |
|
| 317 | } |
|