Changeset 24940 for trunk/wp-includes/link-template.php
- Timestamp:
- 08/01/2013 01:15:14 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r24844 r24940 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.