I use WordPress not with its core blog features, all of my pages are created by customizing the template and then creating the page. Because for me, the page content and display effect is very important.
I use WordPress In addition to the historical reasons, there are several factors:
Call the unified header and footer
There are ready-made WP functions that can be called, such as getting a resource URLget_template_directory_uri()
Custom plug-ins enable custom functionality and provide a unified interface for page invocation
Among them, my problem is that there are some "static" pages (at least not related to user information), such as: FAQ page, Product introduction page and so on, these pages are not necessary to use PHP every time is dynamically generated. So how to make these pages, automated/engineered to generate static pages.
PS: Please do not directly answer the use of WP cache class plug-ins, these plug-ins are chatty, the function is mainly for the blog class site, optimization is not complete problems. Thank you
Reply content:
I use WordPress not with its core blog features, all of my pages are created by customizing the template and then creating the page. Because for me, the page content and display effect is very important.
I use WordPress In addition to the historical reasons, there are several factors:
Call the unified header and footer
There are ready-made WP functions that can be called, such as getting a resource URLget_template_directory_uri()
Custom plug-ins enable custom functionality and provide a unified interface for page invocation
Among them, my problem is that there are some "static" pages (at least not related to user information), such as: FAQ page, Product introduction page and so on, these pages are not necessary to use PHP every time is dynamically generated. So how to make these pages, automated/engineered to generate static pages.
PS: Please do not directly answer the use of WP cache class plug-ins, these plug-ins are chatty, the function is mainly for the blog class site, optimization is not complete problems. Thank you