*.php
1 2 3 4 5 6 7 8 9 |
<?php $days = 5; $today = date_i18n('U'); $entry = get_the_time('U'); $elapsed = date('U',($today - $entry)) / 86400; if( $days > $elapsed ){ echo '<div class="newmark">New</div>'; } ?> |
css
1 2 3 4 |
.newmark { color:#f00; font-weight:600; } |
sample css
1 2 3 4 5 6 7 |
<div style="width:40px;height:5px;background:#ff0000;margin-left:5px;margin-bottom:0px;margin-bottom:0;"></div> <div style="width:40px;height:30px;background:#ff0000;margin-left:5px;margin-bottom:0px;margin-bottom:0;"> <div align="center" style="color:#fff;font-weight:600;font-size:15px;"> New </div></div> <div style="width:0;height:10px;border-left: 20px solid #ff0000;border-right: 20px solid #ff0000;border-bottom: 15px solid transparent;background:none;margin-top:0px;margin-left:5px;margin-bottom:30px;"></div> |