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
/** | |
* Header Tab | |
*/ | |
body { | |
background: #f06; | |
background: linear-gradient(45deg, #FFCA2B, #ff5722); | |
min-height: 100vh; | |
font:16px/1.5 Arial, sans-serif; | |
} |
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
function onInstall() | |
{ | |
/* | |
* Setup the Change log spreadsheet | |
* (c) 2011,2012 Julio Flores <http://juliorfa.me> | |
* MIT license | |
* | |
* with attitude & love by @JulioRFA (Web Designer & Developer) | |
*/ | |
var auto_increment_id_formula = '=ARRAYFORMULA( IF( B2:B = ""; ""; ROW(B2:B) - 1 ) )'; |
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 | |
/** | |
Custom Query for Sticky Posts only | |
---------------------------------- | |
*/ | |
$sticky = get_option( 'sticky_posts' ); | |
$args = array( | |
'posts_per_page' => 2, // Number of sticky posts to get | |
'post__in' => $sticky, | |
'ignore_sticky_posts' => 1 |