This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Change format of $insert[story_time]


avatar
trackpads 1
From: -
Change format of $insert[story_time]

Is there a way to shorten this variable?

For example, it currently is:

2005-02-11 10:47:48

Maybe I can change it just to the date or maybe even subtract the exact second off of it to save space?

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Change format of $insert[story_time]
avatar
OP 1
From: -
Change format of $insert[story_time]

Thanks!
1 Re: Change format of $insert[story_time]
avatar
0
From: -
Change format of $insert[story_time]

I put this at the top of the Story, news_col_news and news template:

<?php
global $insert;
$insert[story_time] = date("l j F Y",strtotime($insert[story_time]));

It changes the output to, for example:

Friday 11 February 2005

You can remove the Y to shorten it...

$insert[story_time] = date("l j F",strtotime($insert[story_time]));

Outputs:

Friday 11 February

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.