From 4ee5c8aefc3a7ceb8f433910a021008acd107ec3 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Tue, 18 May 2004 08:36:53 +0000 Subject: [PATCH] This is used more than I thought in templates. git-svn-id: https://develop.svn.wordpress.org/trunk@1305 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions-links.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wp-includes/template-functions-links.php b/wp-includes/template-functions-links.php index 7121a49778..6ffb41523d 100644 --- a/wp-includes/template-functions-links.php +++ b/wp-includes/template-functions-links.php @@ -4,6 +4,10 @@ function the_permalink() { echo get_permalink(); } +function permalink_link() { // For backwards compatibility + echo get_permalink(); +} + function permalink_anchor($mode = 'id') { global $id, $post; switch(strtolower($mode)) {