ap_get_time( mixed $_post = null, string $format = '' )
Description #
Return post time.
Parameters #
- $_postmixed (Optional) Post ID, Object or null. Default value: null
- $formatstring (Optional) Date format. Default value: ''
Source #
File: includes/qaquery.php
function ap_get_time( $_post = null, $format = '' ) { $_post = ap_get_post( $_post ); if ( ! $_post ) { return; } return get_post_time( $format, true, $_post->ID, true ); }
Expand full source code Collapse full source code View on GitHub: includes/qaquery.php:591
Add your comment