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 | |
/* JUST ADD THIS CODE TO YOUR THEMES functions.php */ | |
/* Customize the last half, the output half to suit your projects needs */ | |
add_filter('post_gallery', 'my_post_gallery', 10, 2); | |
function my_post_gallery($output, $attr) { | |
global $post; | |
if (isset($attr['orderby'])) { | |
$attr['orderby'] = sanitize_sql_orderby($attr['orderby']); |
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
<template> | |
<div class="countdown"> | |
<div class="time-unite created" v-show="years"> | |
<div class="time-unite-title">Y</div> | |
<div class="time-unite-value">{{ years }}</div> | |
</div> | |
<div class="time-unite created" v-show="months"> | |
<div class="time-unite-title">Mois</div> | |
<div class="time-unite-value">{{ months }}</div> | |
</div> |