Simply turn WordPress into a CMS
Using WordPress as a CMS becomes even easier in version 2.1. It only takes 5 simple steps and does not need to modify complicated code.
Create a page and name it home as the start page, and give its page order (page order) to 0.
Create an empty page and name it weblog and give it page order (page order) of 99.
In the management interface, select option > reading, and use the home created above as the front page (start page) and weblog as the posts page (article list page).
Create website menu through this function wp_list_pages(’sort_column=menu_order&title_li=’).
Use a plugin to make the page searchable (optional).
You can choose the Search Everything plug-in (written by the translator).
When creating pages for your CMS, make sure the page order must be between 0 and 99. In this case, the first one in the menu is home, and the last one is weblog. Of course, you can change it according to your own needs.
Personally, I think he explained WordPress as CMS more clearly and clearly, and you can expand it according to the simple steps he provided.
However, in reality, following the steps mentioned in the quote exactly will not necessarily successfully turn Wordpress into a CMS. In my case, the end result was two Home links and one Blog link in the navigation bar, and all three links pointed to the Blog page. After checking the header.php file of the theme, I found that the navigation bar uses the following code to determine the current page:
The following is the quoted content:
In fact, if you are using WordPress version 2.0.1 or above, the wp_list_pages() function already has the function of adding the ID current_page_item to the link. Therefore, the coexistence of the two will produce duplicate links in the navigation menu. If the above code is used in the theme you are using, consider replacing it with wp_list_pages(). If both are used, consider deleting the former.
In addition, regarding the problem that the homepage is still the Blog, it needs to be solved by adding the redirection code in home.php.
The following is the quoted content:
$homepage = get_option('siteurl')."/home/";
global $wp; $wp_received_argument = false;
foreach ($wp->query_vars as $k=> ;$v) if ($v) $wp_received_argument = true;
if ($wp_received_argument) require(TEMPLATEPATH . "/index.php");
else {
wp_redirect($homepage);
exit();
}
Please add the starting and ending tags of the PHP code before and after the code I quoted
Place the above code in home.php in the directory of your current theme. The current theme directory refers to wp-content/themes/the theme you are currently using. If your theme already has a home.php, please overwrite it after backing it up.
Now, when users and search engines visit the homepage of your blog, they will be taken to the URL represented by the variable $homepage. This URL can point to any page. In the code example this is http://yoursite.com/home/. You can change this address as you like.
For blog readers, the blog is still accessible through the navigation menu. However, for the Dark theme, after following the 5 steps, the final result is that the Blog in the navigation menu cannot be marked as the current page item. There is no green mark to tell readers which item in the navigation menu the current page is.
For more related articles, please pay attention to the PHP Chinese website (www.php.cn)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP and Flutter are popular technologies for mobile development. Flutter excels in cross-platform capabilities, performance and user interface, and is suitable for applications that require high performance, cross-platform and customized UI. PHP is suitable for server-side applications with lower performance and not cross-platform.

You can easily modify your WordPress page width by editing your style.css file: Edit your style.css file and add .site-content { max-width: [your preferred width]; }. Edit [your preferred width] to set the page width. Save changes and clear cache (optional).

WordPress posts are stored in the /wp-content/uploads folder. This folder uses subfolders to categorize different types of uploads, including articles organized by year, month, and article ID. Article files are stored in plain text format (.txt), and the filename usually includes its ID and title.

WordPress template files are located in the /wp-content/themes/[theme name]/ directory. They are used to determine the appearance and functionality of the website, including header (header.php), footer (footer.php), main template (index.php), single article (single.php), page (page.php), Archive (archive.php), category (category.php), tag (tag.php), search (search.php) and 404 error page (404.php). By editing and modifying these files, you can customize the appearance of your WordPress website

Search for authors in WordPress: 1. Once logged in to your admin panel, navigate to Posts or Pages, enter the author name using the search bar, and select Author in Filters. 2. Other tips: Use wildcards to broaden your search, use operators to combine criteria, or enter author IDs to search for articles.

The most stable WordPress version is the latest version because it contains the latest security patches, performance enhancements, and introduces new features and improvements. In order to update to the latest version, log into your WordPress dashboard, go to the Updates page and click Update Now.

WordPress requires registration. According to my country's "Internet Security Management Measures", websites that provide Internet information services within the country must register with the local provincial Internet Information Office, including WordPress. The registration process includes steps such as selecting a service provider, preparing information, submitting an application, reviewing and publishing, and obtaining a registration number. The benefits of filing include legal compliance, improving credibility, meeting access requirements, ensuring normal access, etc. The filing information must be true and valid, and must be updated regularly after filing.

To delete a WordPress theme template, first log into your dashboard, then go to Appearance > Theme Editor, select the theme you want to delete, click Delete and confirm, and optionally activate the new theme.
