Merge pull request #767 from IanDelMar/fix-site-hook

Fix function_exists & parenthesis
This commit is contained in:
Holger 2018-08-16 16:08:51 +02:00 committed by GitHub
commit e12060837c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
* @package understrap
*/
if ( ! function_exists( 'understrap_add_site_info' ) ) {
if ( ! function_exists( 'understrap_site_info' ) ) {
/**
* Add site info hook to WP hook library.
*/
@ -40,6 +40,6 @@ if ( ! function_exists( 'understrap_add_site_info' ) ) {
)
);
echo apply_filters( understrap_site_info_content, $site_info ); // WPCS: XSS ok.
echo apply_filters( 'understrap_site_info_content', $site_info ); // WPCS: XSS ok.
}
}