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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
// _variables.scss | |
$cor1: #FFF; | |
$cor2: #000; | |
$cor3: blue; |
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
<?php | |
function get_post_views( $postID ){ | |
$count_key = "post_views"; | |
$count = get_post_meta ($postID, $count_key, true ); | |
if( $count=="" ){ | |
delete_post_meta( $postID, $count_key ); | |
add_post_meta( $postID, $count_key, "0" ); | |
return "0 View"; | |
} | |
return $count." Visualizações"; |
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
//@import "compass"; // Compass Required, or not | |
// | |
// Use with modernizr.js for fallbacks IE or old-browsers | |
// | |
@mixin nop( $property ) { | |
.no-#{ $property } & { | |
@content; | |
} | |
} |
NewerOlder