From 83a485738c4a5d8e69678bedf6b3def64719ae80 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 6 Aug 2013 09:45:29 +0000 Subject: [PATCH] Twenty Fourteen: Use correct function prefix. props Jayjdk. fixes #24898. git-svn-id: https://develop.svn.wordpress.org/trunk@24990 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/themes/twentyfourteen/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentyfourteen/functions.php b/wp-content/themes/twentyfourteen/functions.php index d7d896ceb8..2c38e1d929 100644 --- a/wp-content/themes/twentyfourteen/functions.php +++ b/wp-content/themes/twentyfourteen/functions.php @@ -13,12 +13,12 @@ if ( ! isset( $content_width ) ) $content_width = 474; /* pixels */ -function futher_set_content_width() { +function twentyfourteen_set_content_width() { global $content_width; if ( is_page_template( 'full-width-page.php' ) || is_attachment() ) $content_width = 895; } -add_action( 'template_redirect', 'futher_set_content_width' ); +add_action( 'template_redirect', 'twentyfourteen_set_content_width' ); if ( ! function_exists( 'twentyfourteen_setup' ) ) : /**