最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Styling the date format with date_i18n

programmeradmin1浏览0评论

I'm in wordpress, I am trying to format the date output. This code use to call the end of the sales promotion:

<?php $thepostid = get_the_ID();
$sale_price_dates_to = ( $date = get_post_meta( $thepostid, '_sale_price_dates_to', true ) ) ? date_i18n( 'M j Y', $date ) : '';
echo '<div class="endsale">' .'<span>'.'Promo end ' . '</span>'.$sale_price_dates_to .'</div>';
?>  

It's output looks like this: JAN 21 2016

I need to style the date and need to give div or span to M, j and Y.

I'm not familiar PHP to get things working.

Can anyone help me?

Thank for any kind of help.

I'm in wordpress, I am trying to format the date output. This code use to call the end of the sales promotion:

<?php $thepostid = get_the_ID();
$sale_price_dates_to = ( $date = get_post_meta( $thepostid, '_sale_price_dates_to', true ) ) ? date_i18n( 'M j Y', $date ) : '';
echo '<div class="endsale">' .'<span>'.'Promo end ' . '</span>'.$sale_price_dates_to .'</div>';
?>  

It's output looks like this: JAN 21 2016

I need to style the date and need to give div or span to M, j and Y.

I'm not familiar PHP to get things working.

Can anyone help me?

Thank for any kind of help.

Share Improve this question edited Jul 19, 2019 at 19:27 Sami Ahmed Siddiqui 1293 bronze badges asked May 14, 2016 at 19:10 MailmulahMailmulah 971 gold badge4 silver badges13 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

Just use date_i18n in multiple places with PHP date arguments just for what you need:

if ( $date = get_post_meta( $thepostid, '_sale_price_dates_to', true ) ) {
    $sale_price_dates_to =
        '<span class="m">' . date_i18n( 'M', $date ) . '</span> ' .
        '<span class="d">' . date_i18n( 'j', $date ) . '</span> ' .
        '<span class="y">' . date_i18n( 'Y', $date ) . '</span>';
} else {
    $sale_price_dates_to = '';
}
发布评论

评论列表(0)

  1. 暂无评论