Twenty Ten and Eleven: don't display modified excerpt link in wp-admin.
Props kraftbj, fixes #30026. git-svn-id: https://develop.svn.wordpress.org/trunk@30145 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
09a1a6f5e6
commit
9eb6f6f7fe
|
@ -390,7 +390,10 @@ endif; // twentyeleven_continue_reading_link
|
|||
* @return The filtered Read More text.
|
||||
*/
|
||||
function twentyeleven_auto_excerpt_more( $more ) {
|
||||
return ' …' . twentyeleven_continue_reading_link();
|
||||
if ( ! is_admin() ) {
|
||||
return ' …' . twentyeleven_continue_reading_link();
|
||||
}
|
||||
return $more;
|
||||
}
|
||||
add_filter( 'excerpt_more', 'twentyeleven_auto_excerpt_more' );
|
||||
|
||||
|
@ -406,7 +409,7 @@ add_filter( 'excerpt_more', 'twentyeleven_auto_excerpt_more' );
|
|||
* @return string The filtered "Continue Reading" link.
|
||||
*/
|
||||
function twentyeleven_custom_excerpt_more( $output ) {
|
||||
if ( has_excerpt() && ! is_attachment() ) {
|
||||
if ( has_excerpt() && ! is_attachment() && ! is_admin() ) {
|
||||
$output .= twentyeleven_continue_reading_link();
|
||||
}
|
||||
return $output;
|
||||
|
|
|
@ -295,7 +295,10 @@ endif;
|
|||
* @return string An ellipsis.
|
||||
*/
|
||||
function twentyten_auto_excerpt_more( $more ) {
|
||||
return ' …' . twentyten_continue_reading_link();
|
||||
if ( ! is_admin() ) {
|
||||
return ' …' . twentyten_continue_reading_link();
|
||||
}
|
||||
return $more;
|
||||
}
|
||||
add_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' );
|
||||
|
||||
|
@ -311,7 +314,7 @@ add_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' );
|
|||
* @return string Excerpt with a pretty "Continue Reading" link.
|
||||
*/
|
||||
function twentyten_custom_excerpt_more( $output ) {
|
||||
if ( has_excerpt() && ! is_attachment() ) {
|
||||
if ( has_excerpt() && ! is_attachment() && ! is_admin() ) {
|
||||
$output .= twentyten_continue_reading_link();
|
||||
}
|
||||
return $output;
|
||||
|
|
Loading…
Reference in New Issue