I want to display the Title of my WordPress Site on the single blog posts pages.
I use the following line of code in my theme’s ‘single blog post.php’
<h1><?php $site_title = get_bloginfo( 'name' ); ?></h1>
However it does not show anything.
I want to display the Title of my WordPress Site on the single blog posts pages.
I use the following line of code in my theme’s ‘single blog post.php’
<h1><?php $site_title = get_bloginfo( 'name' ); ?></h1>
However it does not show anything.
You must be logged in to post a comment.
You are not outputting anything to show. You are only assigning blog name to a variable. You need to echo the content. It should be :
Hope this helps 🙂