Changeset 8233 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/formatting.php
- Timestamp:
- 02/12/2019 10:38:50 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/formatting.php
r7844 r8233 84 84 * Handles these six different types of links: 85 85 * 86 * - {@link http ://en.wikipedia.org/wiki/ISO_8601}86 * - {@link https://en.wikipedia.org/wiki/ISO_8601} 87 87 * - {@see WP_Rewrite::$index} 88 88 * - {@see WP_Query::query()} 89 89 * - {@see esc_attr()} 90 90 * - {@see 'pre_get_search_form'} 91 * - {@link http ://codex.wordpress.org/The_Loop Use new WordPress Loop}91 * - {@link https://codex.wordpress.org/The_Loop Use new WordPress Loop} 92 92 * 93 93 * Note: Though @see and @link are semantically different in meaning, that isn't always … … 133 133 $parts = explode( ' ', $link, 2 ); 134 134 135 // Link without linked text: {@link http ://en.wikipedia.org/wiki/ISO_8601}135 // Link without linked text: {@link https://en.wikipedia.org/wiki/ISO_8601} 136 136 if ( 1 === count( $parts ) ) { 137 137 $url = $text = $link; 138 138 } 139 139 140 // Link with linked text: {@link http ://codex.wordpress.org/The_Loop Use new WordPress Loop}140 // Link with linked text: {@link https://codex.wordpress.org/The_Loop Use new WordPress Loop} 141 141 else { 142 142 $url = $parts[0];
Note: See TracChangeset
for help on using the changeset viewer.