CMS is short for content management system, meaning "Content Management System ".
WordPress is a very powerful Blog system with many plug-ins, which is easy to expand. What's more, the website developed with WordPress is more concise and beautiful.
Using Wordpress to build a CMS is very simple and requires only five steps without complicated coding.
- Create a page, name it "home", and set the page number (page order) to 0.
- Add a row at the top of index. php <? PHP/* Template Name: weblog */?> .
- Create a blank page named "weblog", set the page number to 99, and bind it to the "weblog" template just added.
- On the Management page, choose Options> reading from the menu, select the home page as the front page, and select the weblog page as the posts page ".
- If you want to create a navigation menu, you can use the function: wp_list_pages ('sort _ column = menu_order & title_li = '). (If you use some theme, this function may already be included .)
Next, you can create a series of pages as CMS Content. However, we recommend that you set the numbers of these pages between 0 and 99. This ensures that the first page of the navigation menu is "home" and the last is "weblog. Of course, you can also make adjustments as needed.
Original English:WordPress as CMS in five steps