Make WordPress Core

Ticket #35238: 35238.diff

File 35238.diff, 1.6 KB (added by ericlewis, 9 years ago)
  • src/wp-includes/link-template.php

     
    29122912}
    29132913
    29142914/**
    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.
    29162916 *
    29172917 * Returns the 'home' option with the appropriate protocol, 'https' if
    29182918 * {@see is_ssl()} and 'http' otherwise. If `$scheme` is 'http' or 'https',
     
    29302930}
    29312931
    29322932/**
    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.
    29342934 *
    29352935 * Returns the 'home' option with the appropriate protocol, 'https' if
    29362936 * {@see is_ssl()} and 'http' otherwise. If `$scheme` is 'http' or 'https',
     
    29872987}
    29882988
    29892989/**
    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.
    29912992 *
    29922993 * Returns the 'site_url' option with the appropriate protocol, 'https' if
    29932994 * is_ssl() and 'http' otherwise. If $scheme is 'http' or 'https', is_ssl() is
     
    30043005}
    30053006
    30063007/**
    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.
    30083010 *
    30093011 * Returns the 'site_url' option with the appropriate protocol, 'https' if
    30103012 * {@see is_ssl()} and 'http' otherwise. If `$scheme` is 'http' or 'https',