function kester_insert_hero_before_content($content) { if ( is_singular() && ! is_page() ) { // all single CPTs global $post; setup_postdata($post); // Full hero/banner HTML $hero = '
'; wp_reset_postdata(); // Prepend hero to the original content return $hero . $content; } return $content; } add_filter('the_content', 'kester_insert_hero_before_content');