Changeset 24941 for branches/3.6/wp-includes/link-template.php
- Timestamp:
- 08/01/2013 01:18:01 PM (12 years ago)
- Location:
- branches/3.6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.6
-
branches/3.6/wp-includes/link-template.php
r24783 r24941 2021 2021 * 2022 2022 * @param string $path Optional. Path relative to the includes url. 2023 * @param string $scheme Optional. Scheme to give the includes url context. 2023 2024 * @return string Includes url link with optional path appended. 2024 2025 */ 2025 function includes_url( $path = '') {2026 $url = site_url( ) . '/' . WPINC . '/';2026 function includes_url( $path = '', $scheme = null ) { 2027 $url = site_url( '/' . WPINC . '/', $scheme ); 2027 2028 2028 2029 if ( $path && is_string( $path ) )
Note: See TracChangeset
for help on using the changeset viewer.