From 362760a485c2385d846d571157f98e3688f8ab99 Mon Sep 17 00:00:00 2001 From: rob1n Date: Fri, 30 Mar 2007 23:46:17 +0000 Subject: [PATCH] Add missing the_title filter call. Props jhodgdon. fixes #4050 git-svn-id: https://develop.svn.wordpress.org/trunk@5144 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/general-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 29f99d3e3e..7b08d99ab7 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -425,7 +425,7 @@ function wp_get_archives($args = '') { $url = get_permalink($arcresult); $arc_title = $arcresult->post_title; if ( $arc_title ) - $text = strip_tags($arc_title); + $text = strip_tags(apply_filters('the_title', $arc_title)); else $text = $arcresult->ID; echo get_archives_link($url, $text, $format, $before, $after);