Agrega este código al archivo functions.php de tu tema:
add_action( 'personal_options', array ( 'T5_Hide_Profile_Bio_Box', 'start' ) ); class T5_Hide_Profile_Bio_Box { public static function start() { $action = ( IS_PROFILE_PAGE ? 'show' : 'edit' ) . '_user_profile'; add_action( $action, array ( __CLASS__, 'stop' ) ); ob_start(); } public static function stop() { $html = ob_get_contents(); ob_end_clean(); // remove the headline $headline = __( IS_PROFILE_PAGE ? 'About Yourself' : 'About the user' ); $html = str_replace( '<h3>' . $headline . '</h3>', '', $html ); // remove the table row $html = preg_replace( '~<tr>\s*<th><label for="description".*</tr>~imsUu', '', $html ); print $html; } }
Deja una respuesta