Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How will you create a template page in wordpress?



How will you create a template page in wordpress?..

Answer / Anuradha Verma

To create a new template page in WordPress, follow these steps:

1. Log in to your WordPress dashboard.
2. Navigate to Appearance > Theme Editor or use an FTP client like FileZilla to access your theme's files on the server.
3. Locate the `page.php` file under the `theme-folder/templates` directory (if it doesn't exist, create a new file with that name).
4. Modify the contents of the page.php file to suit your desired template structure, such as:
```
<?php
get_header();
if ( have_posts() ) :
while ( have_posts() ) : the_post();
get_template_part( 'content', get_post_format() );
endwhile;
endif;
get_sidebar();
get_footer();
?>
```
5. Save and update the page.php file.
6. Test your new template by creating a new page from the dashboard (Pages > Add New) and selecting "Template" in the Visibility settings. Choose the name of your custom page template from the dropdown menu.
7. Publish the page to see if your new template is working correctly.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More WordPress Interview Questions

How many people are using wordpress?

1 Answers  


Tell me how include and require are different from each other?

1 Answers  


What is post type wordpress?

1 Answers  


How common is wordpress?

1 Answers  


What is an anecdote and give examples?

1 Answers  


How do I install the latest version of wordpress?

1 Answers  


Where is wordpress database stored?

1 Answers  


Explain me that whether the comparison of string “50ᕙ and integer 60 will work in php or not?

1 Answers  


In WordPress, objects are passed by value or by reference?

1 Answers  


Tell me in what case you don't see plugin menu?

1 Answers  


How do I create a social menu in wordpress?

1 Answers  


Tell me can I use a database other than mysql?

1 Answers  


Categories