irl_irl
irl_irl

Reputation: 3975

How do I get the name of the page I am on?

I want to print the name of the page I am on in Wordpress. How do I do this?

Upvotes: 0

Views: 683

Answers (2)

acupuncture_boynton
acupuncture_boynton

Reputation: 1

in addition, think you should add the "echo" so it would output or print the title. so goes like:

<?php echo the_title(); ?>

Upvotes: 0

Adam Dempsey
Adam Dempsey

Reputation: 2962

Just put this in your page template:

<?php the_title(); ?>

Upvotes: 4

Related Questions