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 46c40960e10cc0bf489e43afaa2b07d2f1198365)
+++ wp-includes/post-template.php	(revision )
@@ -210,6 +210,31 @@
 }
 
 /**
+ * Display the Post Name
+ *
+ * @since 4.4.0
+ *
+ * @param int $id Optional. Post ID.
+ */
+
+function the_slug( $id = 0 ) {
+	echo get_the_slug( $id );
+}
+
+/**
+ * Retrieve the Post Name
+ *
+ * @since 4.4.0
+ *
+ * @param int $id Optional. Post ID.
+ *
+ * @return string
+ */
+function get_the_slug( $id = 0 ) {
+	return apply_filters( 'get_the_slug', get_post_field( 'post_name', $id ) );
+}
+
+/**
  * Display the post content.
  *
  * @since 0.71
