diff --git a/inc/setup.php b/inc/setup.php index 69d0aab..59890ff 100644 --- a/inc/setup.php +++ b/inc/setup.php @@ -110,7 +110,10 @@ if ( ! function_exists( 'understrap_custom_excerpt_more' ) ) { * @return string */ function understrap_custom_excerpt_more( $more ) { - return ''; + if ( ! is_admin() ) { + $more = ''; + } + return $more; } } @@ -125,8 +128,10 @@ if ( ! function_exists( 'understrap_all_excerpts_get_more_link' ) ) { * @return string */ function understrap_all_excerpts_get_more_link( $post_excerpt ) { - - return $post_excerpt . ' [...]
'; + if ( ! is_admin() ) { + $post_excerpt = $post_excerpt . ' [...]'; + } + return $post_excerpt; } -} \ No newline at end of file +}