Index: src/wp-includes/formatting.php
===================================================================
--- src/wp-includes/formatting.php	(revision 32291)
+++ src/wp-includes/formatting.php	(working copy)
@@ -3145,6 +3145,23 @@
 }
 
 /**
+ * Wrapper for esc_url
+ *
+ * @since 4.3
+ *
+ * @uses esc_url()
+ *
+ * @param string $url The URL to be cleaned.
+ * @param array $protocols Optional. An array of acceptable protocols.
+ *		Defaults to 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn' if not set.
+ * @param string $_context Private. Use esc_url_raw() for database usage.
+ * @return string The cleaned $url after the 'clean_url' filter is applied.
+ */
+function e_esc_url( $url, $protocols = null, $_context = 'display' ) {
+	echo esc_url( $url, $protocols , $_context );
+}
+
+/**
  * Performs esc_url() for database usage.
  *
  * @since 2.8.0
@@ -3230,7 +3247,20 @@
 	return apply_filters( 'esc_html', $safe_text, $text );
 }
 
+
 /**
+ * Wrapper to echo the result esc_html
+ *
+ * @since 4.3
+ * @uses esc_html
+ *
+ * @param string $text
+ */
+function e_esc_html( $text ) {
+	echo esc_html( $text );
+}
+
+/**
  * Escaping for HTML attributes.
  *
  * @since 2.8.0
@@ -3256,6 +3286,18 @@
 }
 
 /**
+ * Wrapper to echo the result of esc_attr
+ *
+ * @since 4.3
+ * @uses esc_attr
+ *
+ * @param $text
+ */
+function e_esc_attr( $text ) {
+	echo esc_attr( $text );
+}
+
+/**
  * Escaping for textarea values.
  *
  * @since 3.1.0
@@ -3276,7 +3318,19 @@
 	return apply_filters( 'esc_textarea', $safe_text, $text );
 }
 
+
 /**
+ * Wrapper to echo the result of esc_textarea
+ *
+ * @since 4.3
+ * @uses esc_textarea
+ * @param $text
+ */
+function e_esc_textarea( $text ) {
+	echo esc_textarea( $text );
+}
+
+/**
  * Escape an HTML tag name.
  *
  * @since 2.5.0
