How to disable the continue reading link at the excerpt for slides
-
Hello,,
I need to remove the continue reading on the slideshow using the excerpt..I try to add this at the functions.php code but it didnt work..
add_action( ‘init’, ‘remove_excerpt_from_slider’ );
function remove_excerpt_from_slider() {
if( ‘ps_promotion’ == get_post_type() ) {
remove_all_filters( ‘excerpt_more’ );
}
}Can anyone suggest on how to do it..??
thank you
- The topic ‘How to disable the continue reading link at the excerpt for slides’ is closed to new replies.