| | 117 | /** |
| | 118 | * From 3.5 forward, protocol-relative URLs are allowed when |
| | 119 | * registering/enqueueing scripts and styles. |
| | 120 | */ |
| | 121 | if ( version_compare( get_bloginfo( 'version' ), '3.5', '>=' ) ) { |
| | 122 | wp_enqueue_style( 'twentytwelve-fonts', '//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' ); |
| | 123 | } else { |
| | 124 | $protocol = is_ssl() ? 'https' : 'http'; |
| | 125 | wp_enqueue_style( 'twentytwelve-fonts', "$protocol://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700" ); |
| | 126 | } |
| | 127 | } |
| | 128 | |