Hi @jbgglgdev,
Are you trying to add the page title that appears on all of the other pages?
If so, inside of the MU plugin that you setup in the previous support thread you can try adding the following code:
/**
* Add the page title to the blog page.
*
* @action primer_after_header
*
* @return mixed Markup for the page-title template.
*/
function primer_blog_page_title() {
if ( ! is_home() ) {
return;
}
get_template_part( 'templates/parts/page-title' );
}
add_action( 'primer_after_header', 'primer_blog_page_title', 12 );
This should add the same page title markup that exists on the other pages, to the blog page. is_home()
is a conditional built into WordPress which checks if the user is on the blog listing page (set inside of the ‘Reading Settings’ settings on the dashboard).
is_home() reference
Let me know if that helps out at all, or if there is something else you were referring to.