Merge pull request #826 from pattonwebz/issue/825-excerpt-length-filter-only-on-frontend

Prevent modifications to read_more affecting dashboard expected behavior - thx @pattonwebz !
This commit is contained in:
Holger 2018-10-15 14:44:09 +02:00 committed by GitHub
commit 5b23f36a25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 5 deletions

View File

@ -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 . ' [...]<p><a class="btn btn-secondary understrap-read-more-link" href="' . esc_url( get_permalink( get_the_ID() )) . '">' . __( 'Read More...',
'understrap' ) . '</a></p>';
if ( ! is_admin() ) {
$post_excerpt = $post_excerpt . ' [...]<p><a class="btn btn-secondary understrap-read-more-link" href="' . esc_url( get_permalink( get_the_ID() ) ) . '">' . __( 'Read More...',
'understrap' ) . '</a></p>';
}
return $post_excerpt;
}
}
}