Tagged: excerpt more
I recently removed the post excerpt from home page as well as category pages using below code
function mytheme_custom_excerpt_length( $length ) { return 0; } add_filter( ‘excerpt_length’, ‘mytheme_custom_excerpt_length’, 999 );
But it is still showing “…” three dots below Post Title so how i could i remove it permanently not only using CSS.
Waiting for early response
Hello Mohsin,
You only modify the excerpt length but not the excerpt more symbol, to remove the excerpt more symbol (…) use below function code.
function mytheme_custom_excerpt_more($more) { if ( !is_admin() ) { return ''; } return ''; } add_filter('excerpt_more', 'mytheme_custom_excerpt_more');
Thank you!