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
+ (BOOL)allowsBlurEffect { | |
// I assume that any device that is not checked here is newer and therefore is "blur" capable | |
static BOOL isAllowed = YES; | |
static BOOL isChecked = NO; | |
if (!isChecked) { | |
isChecked = YES; | |
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
/** | |
* Center lists | |
*/ | |
div { | |
width: 100%; | |
overflow:hidden; | |
position:relative; | |
} | |
div ul { |
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 $cat_obj = $wp_query->get_queried_object(); ?> | |
<?php | |
if( $cat_obj->parent ) { | |
// CATEGORIA FILL / Child category only | |
while ( have_posts() ) : the_post(); ?> | |
<?php include('post.php'); ?> | |
<?php endwhile; ?> |