render( $template_name, $context ); } catch ( \Exception $e ) { if ( WP_DEBUG ) { echo '
'; echo '

' . esc_html__( 'Template Error:', 'wp-fedistream' ) . ' ' . esc_html( $e->getMessage() ) . '

'; echo '
'; } } } else { // Fallback to default content. if ( have_posts() ) { while ( have_posts() ) { the_post(); the_content(); } } } ?>