We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2ac400 commit 3ef6c23Copy full SHA for 3ef6c23
1 file changed
themes/osi/inc/template-tags.php
@@ -17,8 +17,8 @@ function osi_posted_on( $format = '' ) {
17
18
$time_string = '<time class="byline--date entry-date published" datetime="%1$s">%2$s</time>';
19
20
- // Don't display the updated date for blog posts.
21
- if ( 'post' !== get_post_type() ) {
+ // Don't display the updated date for blog posts and meeting-minutes.
+ if ( 'post' !== get_post_type() && 'meeting-minutes' !== get_post_type() ) {
22
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
23
$time_string .= '<time class="byline--date entry-date published updated" datetime="%3$s">%4$s</time>';
24
}
0 commit comments