DextrousDave
DextrousDave

Reputation: 6793

Getting calling the post content with variable in Wordpress

When you are in worpdress, you can call the title of a post like the following:

<?php the_title(); ?>

How do you call its content?

thank you

Upvotes: 0

Views: 98

Answers (1)

diggy
diggy

Reputation: 6828

By calling the_content. More information in the Codex: http://codex.wordpress.org/Function_Reference/the_content

Upvotes: 1

Related Questions