This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---------------------------------------------------------- | |
| // A short snippet for detecting versions of IE in JavaScript | |
| // without resorting to user-agent sniffing | |
| // ---------------------------------------------------------- | |
| // If you're not in IE (or IE version is less than 5) then: | |
| // ie === undefined | |
| // If you're in IE (>=5) then you can determine which version: | |
| // ie === 7; // IE7 | |
| // Thus, to detect IE: | |
| // if (ie) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jQuery(document).ready(function($) { | |
| // Responsive wp_video_shortcode(). | |
| $(".wp-video-shortcode") | |
| .css("max-width", "100%") | |
| .parent("div") | |
| .css("width", "auto"); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Custom Logo Link | |
| function wpc_url_login() { | |
| return "http://twentycms.com/"; | |
| } | |
| add_filter('login_headerurl', 'wpc_url_login'); | |
| // Custom Login Styles (including logo) | |
| function login_css() { | |
| wp_enqueue_style( 'login_css', get_template_directory_uri() . '/css/login.css' ); | |
| } |
OlderNewer