'; $home_title = 'Home'; // Get the query & post information global $post, $wp_query; // Do not display on the homepage if ( ! is_front_page() ) { echo ''; } } // Add breadcrumb action add_action( 'blog_reflection_breadcrumb', 'blog_reflection_breadcrumb' ); // Post pagination function function blog_reflection_post_pagination() { the_posts_pagination( array( 'screen_reader_text' => '', 'prev_text' => '', 'next_text' => '', 'type' => 'list', 'mid_size' => 1, ) ); }