Skip to content

Instantly share code, notes, and snippets.

@barryhughes
Created May 2, 2019 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barryhughes/ae5ca5a4684f347e8ba81e88a6501801 to your computer and use it in GitHub Desktop.
Save barryhughes/ae5ca5a4684f347e8ba81e88a6501801 to your computer and use it in GitHub Desktop.
<?php
add_action( 'bbp_theme_after_topic_started_by', function() {
$topic = bbp_get_topic( bbp_get_topic_id() );
if ( ! $topic || ! is_a( $topic, 'WP_Post' ) ) {
return;
}
try {
$date_created = date_create( $topic->post_date )->format( get_option( 'date_format' ) );
print ' on ' . esc_html( $date_created );
}
catch ( Exception $e ) {}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment