Make WordPress Core


Ignore:
Timestamp:
05/05/2004 07:34:41 AM (22 years ago)
Author:
saxmatt
Message:

Some style cleanup. Category base and additional URI options from Jay McCarthy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/template-functions-links.php

    r1203 r1227  
    5151        '%monthnum%',
    5252        '%day%',
     53        '%hour%',
     54        '%minute%',
     55        '%second%',
    5356        '%postname%',
    5457        '%post_id%'
     
    6164                date('m', $unixtime),
    6265                date('d', $unixtime),
     66                date('H', $unixtime),
     67                date('i', $unixtime),
     68                date('s', $unixtime),
    6369                $post->post_name,
    6470                $post->ID
     
    7682                date('m', $unixtime),
    7783                date('d', $unixtime),
     84                date('H', $unixtime),
     85                date('i', $unixtime),
     86                date('s', $unixtime),
    7887                $idpost->post_name,
    7988                $id
Note: See TracChangeset for help on using the changeset viewer.