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
+ function(a) { | |
"use strict"; | |
function b(a, b) { | |
if (!(a instanceof b)) throw new TypeError("Cannot call a class as a function") | |
} | |
var c = function() { | |
function a(a, b) { | |
for (var c = 0; c < b.length; c++) { | |
var d = b[c]; |
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
<!-- HTML --> | |
<label for="file-upload" class="custom-file-upload"> | |
<i class="fa fa-cloud-upload"></i> Custom Upload | |
</label> | |
<input id="file-upload" type="file"/> | |
/* CSS */ |
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 | |
$tags = get_the_tags(); | |
if( $tags ) : | |
echo '<p class="taxonomy"><span class="tag-title">'.__('Tags: ', 'warp').'</span>'; | |
foreach( $tags as $tag ) { | |
$names[] = '<span class="'. $tag->slug .'"><a href="'. get_tag_link($tag->term_id) .'">'. $tag->name .'</a></span>'; | |
} | |
echo implode(' , ', $names ) .'</p>'; | |
endif; | |
?> |