Formatting: Do not run formatting and texturization on author bios.

Removes the formatting and texturization added to author bios in #40040 due to back-compatibility concerns.

Reverts [41172], [41173].

Props 0x6f0, rabmalin for review.
Fixes #42578.



git-svn-id: https://develop.svn.wordpress.org/trunk@42441 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Wilson 2018-01-13 01:10:56 +00:00
parent 1258d1d9d2
commit 2b56623d89
2 changed files with 4 additions and 4 deletions

View File

@ -124,7 +124,7 @@ foreach ( array( 'single_post_title', 'single_cat_title', 'single_tag_title', 's
}
// Format text area for display.
foreach ( array( 'term_description', 'get_the_author_description', 'get_the_post_type_description' ) as $filter ) {
foreach ( array( 'term_description', 'get_the_post_type_description' ) as $filter ) {
add_filter( $filter, 'wptexturize' );
add_filter( $filter, 'convert_chars' );
add_filter( $filter, 'wpautop' );

View File

@ -56,18 +56,18 @@ class Tests_User_Author_Template extends WP_UnitTestCase {
$this->assertEquals( 'test_author', get_the_author_meta( 'user_login' ) );
$this->assertEquals( 'test_author', get_the_author_meta( 'display_name' ) );
$this->assertEquals( '<p>test_author</p>', trim( get_the_author_meta( 'description' ) ) );
$this->assertEquals( 'test_author', trim( get_the_author_meta( 'description' ) ) );
$this->assertEquals( 'test_author', get_the_author_meta( 'user_description' ) );
add_user_meta( self::$author_id, 'user_description', 'user description' );
$this->assertEquals( 'user description', get_user_meta( self::$author_id, 'user_description', true ) );
// user_description in meta is ignored. The content of description is returned instead.
// See #20285
$this->assertEquals( 'test_author', get_the_author_meta( 'user_description' ) );
$this->assertEquals( '<p>test_author</p>', trim( get_the_author_meta( 'description' ) ) );
$this->assertEquals( 'test_author', trim( get_the_author_meta( 'description' ) ) );
update_user_meta( self::$author_id, 'user_description', '' );
$this->assertEquals( '', get_user_meta( self::$author_id, 'user_description', true ) );
$this->assertEquals( 'test_author', get_the_author_meta( 'user_description' ) );
$this->assertEquals( '<p>test_author</p>', trim( get_the_author_meta( 'description' ) ) );
$this->assertEquals( 'test_author', trim( get_the_author_meta( 'description' ) ) );
$this->assertEquals( '', get_the_author_meta( 'does_not_exist' ) );
}