rupok / flexia

A modern lightweight and versatile theme for WordPress with the endless customization options through Customizer.
https://flexia.pro
11 stars 6 forks source link

index.php#L71 #4

Closed EmranAhmed closed 7 years ago

EmranAhmed commented 7 years ago

esc_attr use to escape html attribute. you should use esc_html on this line.

same as blog-desc

printf( esc_html__( '%s', 'flexia' ), get_bloginfo ( 'description' ) ); meaningless.

use wp_kses_post( get_bloginfo ( 'description' ) )