Description
Format the Date (format=d)
Usage
bw_field_function_date( $post, $atts, $f );Parameters
- $post
- ( mixed ) required –
- $atts
- ( mixed ) required –
- $f
- ( mixed ) required –
Returns
voidSource
File name: oik/includes/bw_formatter.phpLines:
1 to 7 of 7
function bw_field_function_date( $post, &$atts, $f ) { static $date_format; $date_format = get_option('date_format'); $date = get_post_time( $date_format, false, $post->ID, false ); bw_field_function_metadata( "bw_date", __( "Date", "oik" ), $date ); }View on GitHub View on Trac
Called by
1 to 2 of 2
