$value ): $translated_text = str_replace( __( $key ), $value, $translated_text ); endforeach; endif; return $translated_text; } add_filter( 'admin_post_thumbnail_html', 'sp_admin_post_thumbnail_html', 10, 2 ); function sportspress_the_content( $content ) { if ( is_singular( 'sp_team' ) && in_the_loop() ) { // change stuff $content .= '

' . do_shortcode('[sp_table]') . '

'; } return $content; } add_filter('the_content', 'sportspress_the_content'); ?>