Home > Back-end >  get_custom_logo and get_bloginfo dont work
get_custom_logo and get_bloginfo dont work

Time:11-17

I'm new at developing with wp. And I would like to know why get_custom_logo(); and get_bloginfo( 'description' ); aren't showed in my view. They are described in my header.php file. Thanks in advanced.

CodePudding user response:

You need to add echo before the function.

Like this

echo get_bloginfo( 'description' )
  • Related