You appear to be a bot. Output may be restricted
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
void
Source
File name: oik/includes/bw_formatter.php
Lines:
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 ); }