Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.

showsubdate

This will show the current time often this code is used in theme subheader.

showsubdate

Quote

showsubdate()


Return Values
Will default display the date in this format: Month Day Year Hour:Minute:Second (M D YYYY H:M:S)

Basic example of showsubdate
Code
<?php
// Will default display the date in this format %B %d %Y %H:%M:%S
echo showsubdate();
// This is also equivalent to showsubdate()
echo showdate($settings['subheaderdate'], time());
?>


Notes
This function also uses ucwords() to get the first letter in each word to change to uppercase.