Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display Wordpress Site Title

Tags:

php

wordpress

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.

like image 613
Student Avatar asked Sep 08 '13 17:09

Student


People also ask

How do I show only the post title in WordPress?

For only a list of post titles, you could swap your current front page with a static front page and either use the Archives shortcode or the Display Posts shortcode.


1 Answers

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 :

<h1><?php echo get_bloginfo( 'name' ); ?></h1> 

Hope this helps :)

like image 75
Sabari Avatar answered Oct 04 '22 12:10

Sabari