Press This: ignore site descriptions that end with an ellipsis. These are most likely auto-generated.
Props kraftbj. Fixes #31639. Built from https://develop.svn.wordpress.org/trunk@31810 git-svn-id: http://core.svn.wordpress.org/trunk@31792 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -971,6 +971,11 @@ class WP_Press_This {
|
||||
} else if ( ! empty( $data['_meta']['description'] ) ) {
|
||||
$text = $data['_meta']['description'];
|
||||
}
|
||||
|
||||
// If there is an ellipsis at the end, the description is very likely auto-generated. Better to ignore it.
|
||||
if ( $text && substr( $text, -3 ) === '...' ) {
|
||||
$text = '';
|
||||
}
|
||||
}
|
||||
|
||||
$default_html = array(
|
||||
|
||||
Reference in New Issue
Block a user