tags:

views:

28

answers:

1
+1  Q: 

wordpress theme

I am creating the wordpress theme and facing a little issue.

In my theme, there are pages, I want to show the title of the page like 'About', 'Blog' how I can do this.

2nd I want to show the all the post just under the blog page. Even I created a template for blog, but unfortunelty, its not happening.

appreciate for ur help.

+1  A: 

1st: use <?php the_title(); ?> to display the pagetitle.

2nd: To display the full post, use: <?php the_content(); ?>

stffn