Home > Article > CMS Tutorial > How to customize WordPress template
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.
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.
/*
Template Name:Friend Link
*/
?>
Place the content in your page.php directly Copy it to links.php.
Then find what 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.
Note: 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
For more wordpress-related technical articles, please visit the wordpress tutorial column to learn!
The above is the detailed content of How to customize WordPress template. For more information, please follow other related articles on the PHP Chinese website!