| 1 |
<?php |
| 2 |
|
| 3 |
add_shortcode( 'wppb-format-date', 'wppb_toolbox_format_date_handler' ); |
| 4 |
function wppb_toolbox_format_date_handler( $atts ){ |
| 5 |
$a = shortcode_atts( array( |
| 6 |
'date' => null, |
| 7 |
'format' => null, |
| 8 |
),$atts ); |
| 9 |
|
| 10 |
if ($a['date'] === null) |
| 11 |
return; |
| 12 |
|
| 13 |
if ($a['format'] === null) |
| 14 |
return $a['date']; |
| 15 |
|
| 16 |
$date = strtotime($a['date']); |
| 17 |
|
| 18 |
return date($a['format'], $date); |
| 19 |
} |
| 20 |
|