Skip to content

Snippet: Insert Blog Meta into Page Header

add_action( 'wpex_hook_page_header_inner', function() {

	// Only add on blog posts
	if ( ! is_singular( 'post' ) ) {
		return;
	}
	
	get_template_part( 'partials/blog/blog-single-meta' );

}, 40 );
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