• Hi , i was searching for any help about “time” in post
    my problem is every time i post something my time does not show only the date.

    any idea?

Viewing 9 replies - 1 through 9 (of 9 total)
  • https://codex.www.ads-software.com/Template_Tags/the_time

    That would need to be added/edited into your active theme’s template(s) to display the time for a post.

    Thread Starter ginoxy

    (@ginoxy)

    kafkaesqui

    where to add those lines ?
    i did not get it at all !
    can u help please? im using wp2

    im using wp2

    Not a lot to go on for helping out. What theme is in use? Do you have a link?

    Thread Starter ginoxy

    (@ginoxy)

    im using WordPress Default 1.5

    Since the time is already displayed on a single post page, I’ll assume you want this for the home page, and possibly archive (and category) pages.

    For the default theme you want to edit its index.php or Main Index Template. Information on editing a theme, or files in general related to your WordPress installation, can be found here:

    https://codex.www.ads-software.com/Editing_Files

    In the index.php look for this line:

    <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>

    It’s a little different than your average theme’s inclusion of the_time(), since it’s passing a date format string as an argument (i.e. 'F jS, Y'). We can adjust this string so it displays both the date and the time:

    <small><?php the_time('F jS, Y @ g:i a') ?> <!-- by <?php the_author() ?> --></small>

    That will display the date/time as:

    January 14th, 2006 @ 12:01 pm

    For archive and category pages, edit the default theme’s archive.php (first Archives on the theme editor page), look for:

    <small><?php the_time('l, F jS, Y') ?></small>

    and make the same change as above to the argument passed to the_time().

    Thread Starter ginoxy

    (@ginoxy)

    in “edit theme” there is no index.php !

    From above:

    For the default theme you want to edit its index.php or Main Index Template.

    index.php or Main (Index) Template

    Thread Starter ginoxy

    (@ginoxy)

    sorry my mistake ??

    Fixed now ??

    Thanks alot mate ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Time problem’ is closed to new replies.