You appear to be a bot. Output may be restricted
Description
Simplify the URL for link text
Usage
$string = trim_scheme( $url );
Parameters
- $url
- ( string ) required –
Returns
string simple link textSource
File name: oik/shortcodes/oik-link.phpLines:
1 to 6 of 6
function trim_scheme( $url ) { $parts = parse_url( $url ); $url = bw_array_get( $parts, "host", null ); $url .= bw_array_get( $parts, 'path' ); return( $url ); }View on GitHub View on Trac