From 2596dcf75b1a11f4c94348d719446a72308d702c Mon Sep 17 00:00:00 2001 From: Ryan Nagle Date: Thu, 7 Jan 2016 11:54:48 -0600 Subject: [PATCH] doc block must immediately precede the function it documents --- inc/images.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/inc/images.php b/inc/images.php index 14d1050db..eb6e1551b 100644 --- a/inc/images.php +++ b/inc/images.php @@ -19,16 +19,16 @@ function largo_attachment_image_link_remove_filter( $content ) { } add_filter( 'the_content', 'largo_attachment_image_link_remove_filter' ); -/** - * Get the home icon for the sticky nav - * - * @param (string) $class any additional classes you would like to add to icon when returned - * @param (string) $size the size of the logo to return - * @return (string) markup for the sticky nav home icon (logo if available, otherwise just an icon) - * - * @since 0.4 - */ if ( ! function_exists( 'largo_home_icon' ) ) { + /** + * Get the home icon for the sticky nav + * + * @param (string) $class any additional classes you would like to add to icon when returned + * @param (string) $size the size of the logo to return + * @return (string) $result markup for the sticky nav home icon (logo if available, otherwise just an icon) + * + * @since 0.4 + */ function largo_home_icon( $class = '', $size = '60x60' ) { global $wpdb;