bp_get_document_date_created()
Return the document date created.
Description
Return
(string) The document date created.
Source
File: bp-document/bp-document-template.php
938 939 940 941 942 943 944 945 946 947 948 949 950 951 | function bp_get_document_date_created() { global $document_template ; $date = date_i18n( bp_get_option( 'date_format' ), strtotime ( $document_template ->document->date_created ) ); /** * Filters the document date created being displayed. * * @since BuddyBoss 1.4.0 * * @param string The date created. */ return apply_filters( 'bp_get_document_date_created' , $date ); } |
Changelog
Version | Description |
---|---|
BuddyBoss 1.4.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.