Home  >  Article  >  CMS Tutorial  >  How to add custom page template in wordpress

How to add custom page template in wordpress

尚
Original
2019-07-27 10:46:278138browse

How to add custom page template in wordpress

Anyone who has used WordPress for a while will know this WordPress: custom page template. But there are still many novices who don’t know the page template function. Let’s introduce it below.

The role of page templates

Let WordPress pages have different layouts or styles. WordPress provides a page function that allows us to create different pages to display different content. Such as contact information, guestbook, etc. Many people like to create this. Once these pages are created, the title and content can be customized. However, the layout of different pages is exactly the same, and you cannot change or add it according to your own needs. Sometimes we just want to add something to the sidebar of a certain page, such as a picture. In this case, we can use a customized template to implement a page with specific functions.

Methods/steps for adding a custom page template

Create a new php file in your theme directory through the ftp tool. For example: links.php (name it as you like).

Edit this newly created file and add this code to the header of the file.

<?php
/*
Template Name:友链  //友链是新模板的名称,可自定义。
*/
?>

Copy the contents of your page.php directly to links.php.

Then find the place you need to change in links.php. I think the most important changes are the sidebar and the article content. As for how to change it, it depends on your needs.

After modifying and saving this file, create a new page or modify an existing page. There is a "Page Template" panel on the lower right. Just select "Friend Links" in the drop-down menu and save it.

How to add custom page template in wordpress

Notes

links.php can contain any content, and the content in page.php does not necessarily have to be copied. You can even put html code directly in it without adding anything else.

Recommended: WordPress Tutorial


The above is the detailed content of How to add custom page template in wordpress. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn