Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
fdaciuk / my_wp_is_mobile.php
Created December 5, 2013 11:14
wp_is_mobile personalizada para não usar no iPad
<?php
function my_wp_is_mobile() {
if (
! empty($_SERVER['HTTP_USER_AGENT'])
// bail out, if iPad
&& false !== strpos($_SERVER['HTTP_USER_AGENT'], 'iPad')
) return false;
return wp_is_mobile();
} // function my_wp_is_mobile
@fdaciuk
fdaciuk / css-vertical-align.css
Created November 21, 2013 18:01
Magia para alinhar imagem na vertical
span {
display: inline-block;
height: 100%;
vertical-align: middle;
}
img {
display: inline-block;
vertical-align: middle;
}
// SmoothScroll for websites v1.2.1
// Licensed under the terms of the MIT license.
// People involved
// - Balazs Galambosi (maintainer)
// - Michael Herf (Pulse Algorithm)
(function(){
// Scroll Variables (tweakable)