コード例 #1
0
ファイル: styles.php プロジェクト: Jessphung/Phungtastic
/**
 * Filters `locale_stylesheet_uri` with a more robust version for checking locale/language/region/direction 
 * stylesheets.
 *
 * @since  2.0.0
 * @access public
 * @param  string  $stylesheet_uri
 * @return string
 */
function hybrid_locale_stylesheet_uri($stylesheet_uri)
{
    $locale_style = hybrid_get_locale_style();
    return !empty($locale_style) ? $locale_style : $stylesheet_uri;
}
コード例 #2
0
/**
 * Filters `locale_stylesheet_uri` with a more robust version for checking locale/language/region/direction
 * stylesheets.
 *
 * @since  2.0.0
 * @access public
 * @param  string  $stylesheet_uri
 * @return string
 */
function hybrid_locale_stylesheet_uri($stylesheet_uri)
{
    $locale_style = hybrid_get_locale_style();
    return $locale_style ? esc_url($locale_style) : $stylesheet_uri;
}