Skip to content

Snippet: Replace Page Header Subheading with Post Date

add_filter( 'totaltheme/page/header/subheading', function( $string ) {
	if ( is_singular( 'post' ) ) {
		return get_the_date();
	}
	return $string;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top