Skip to content

Instantly share code, notes, and snippets.

@tijhaart
tijhaart / esnextbin.md
Last active March 25, 2017 13:38
esnextbin sketch
@tijhaart
tijhaart / esnextbin.md
Created March 6, 2017 17:08
esnextbin sketch
@tijhaart
tijhaart / esnextbin.md
Last active March 1, 2017 20:38
esnextbin sketch
@tijhaart
tijhaart / esnextbin.md
Last active September 20, 2016 20:34
esnextbin sketch
@tijhaart
tijhaart / esnextbin.md
Last active August 30, 2016 15:19
esnextbin sketch
@tijhaart
tijhaart / wp-a-snippet.php
Last active December 21, 2015 10:39
WordPress snippet with alternative control structure: http://php.net/manual/en/control-structures.alternative-syntax.php
<?php $cf = get_post_meta($post->ID, 'video_url', true); ?>
<?php if(!empty($cf): ?>
<a href="<?php get_custom_field_value('video_url', true); ?>" class="outlined">
<?php the_post_thumbnail('portfolio-thumbnail'); ?>
</a>
<?php else: ?>
<a href="#" class="outlined">
<?php the_post_thumbnail('portfolio-thumbnail'); ?>
</a>