This file contains 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 independent_publisher_retina_header_gravatar($args) { | |
if(isset($args['default-image'])) { | |
$args['default-image'] = str_replace('?s=100', '?s=200', $args['default-image']); | |
} | |
return $args; | |
} | |
add_filter('independent_publisher_custom_header_args', 'independent_publisher_retina_header_gravatar'); |
This file contains 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 | |
$books_of_the_bible = array( | |
'Genesis', | |
'Exodus', | |
'Leviticus', | |
'Numbers', | |
'Deuteronomy', | |
'Joshua', | |
'Judges', |
This file contains 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
// See https://developer.mozilla.org/en-US/docs/Web/CSS/unset | |
@mixin unset($property, $fallback: initial) { | |
#{$property}: #{$fallback}; | |
#{$property}: unset; | |
} |