Index: wp-includes/post-template.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- wp-includes/post-template.php	(revision 38092)
+++ wp-includes/post-template.php	(revision )
@@ -54,6 +54,20 @@
 }
 
 /**
+ * Retrieve the sanitized post title.
+ *
+ * @since
+ *
+ * @param string|array $args {
+ *     Title attribute arguments. Optional.
+ * @return string|void String if $echo parameter is false.
+ */
+function get_title_attribute( $args = '' ) {
+	$r = wp_parse_args( $args, array( 'echo' => false ) );
+	return the_title_attribute( $r );
+}
+
+/**
  * Sanitize the current title when retrieving or displaying.
  *
  * Works like the_title(), except the parameters can be in a string or
