i want lowercase first letter of title.
<title><?php echo lcfirst(bloginfo('name')); ?>.blog</title>
- this should result into: super.blog
- but results into: super.blog
i have tried:
<title><?php $bloginfo = bloginfo('name'); echo lcfirst($bloginfo); ?>.blog</title> how possible? doing wrong?
in wordpress, function bloginfo echos result. use get_bloginfo instead.
see code below bloginfo function.
function bloginfo( $show = '' ) { echo get_bloginfo( $show, 'display' ); } see: https://developer.wordpress.org/reference/functions/bloginfo/
https://developer.wordpress.org/reference/functions/get_bloginfo/
Comments
Post a Comment