Ticket #35238: 35238.diff
File 35238.diff, 1.6 KB (added by , 9 years ago) |
---|
-
src/wp-includes/link-template.php
2912 2912 } 2913 2913 2914 2914 /** 2915 * Retrieve the home url for the current site.2915 * Retrieve the url for the current site where the front-end of the site is accessible. 2916 2916 * 2917 2917 * Returns the 'home' option with the appropriate protocol, 'https' if 2918 2918 * {@see is_ssl()} and 'http' otherwise. If `$scheme` is 'http' or 'https', … … 2930 2930 } 2931 2931 2932 2932 /** 2933 * Retrieve the home url for a given site.2933 * Retrieve the url for a given site where the front-end of the site is accessible. 2934 2934 * 2935 2935 * Returns the 'home' option with the appropriate protocol, 'https' if 2936 2936 * {@see is_ssl()} and 'http' otherwise. If `$scheme` is 'http' or 'https', … … 2987 2987 } 2988 2988 2989 2989 /** 2990 * Retrieve the site url for the current site. 2990 * Retrieve the url for the current site where WordPress application files 2991 * (e.g. wp-blog-header.php or the wp-admin/ folder) are accessible. 2991 2992 * 2992 2993 * Returns the 'site_url' option with the appropriate protocol, 'https' if 2993 2994 * is_ssl() and 'http' otherwise. If $scheme is 'http' or 'https', is_ssl() is … … 3004 3005 } 3005 3006 3006 3007 /** 3007 * Retrieve the site url for a given site. 3008 * Retrieve the url for a given site where WordPress application files 3009 * (e.g. wp-blog-header.php or the wp-admin/ folder) are accessible. 3008 3010 * 3009 3011 * Returns the 'site_url' option with the appropriate protocol, 'https' if 3010 3012 * {@see is_ssl()} and 'http' otherwise. If `$scheme` is 'http' or 'https',