• Resolved magnusluca

    (@magnusluca)


    Hey guys,
    Im trying to display only the month of the post and not the whole date on all my posts?
    How is that possible?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Add the following code in place of the existing code for date. You can find it in index.php, single.php file :

    <?php echo the_date(‘F’); ?>

    Hi magnusluca,

    You can use <?php the_time('M'); ?> to display only month. To change the formatting you can try any one from following instead of ‘M’ in brackets :

    m Numeric, with leading zeros 01–12
    n Numeric, without leading zeros 1–12
    F Textual full January – December
    M Textual three letters Jan – Dec

    Thanks.

    Thread Starter magnusluca

    (@magnusluca)

    thanks guys – inside the content.php i guess?

    your theme might also response to the ‘date format’ and ‘time format’ setting under:

    dashboard – settings – general

    Thread Starter magnusluca

    (@magnusluca)

    well it did – sorry to waste your time :/
    and thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Only show the post month on posts?’ is closed to new replies.