step1: Remove the shortcode from get_the_content():
<?php
//Remove the shortcode from content
$content = strip_shortcodes(get_the_content());
?>
step2: Remove shortcode on home page but not on single or archive pages(function.php):
<?php
/*
* Remove shortcodes on the home page
*
*/
function remove_shortcode_from_home( $content ) {
if ( is_home() ) {
$content = strip_shortcodes( $content );
}
return $content;
}
add_filter( 'the_content','remove_shortcode_from_home' );
?>