October 2018
Beginner
300 pages
8h 34m
English
This is similar to post creation process where we use Pages | Add New section to load the page creation screen. We have less options in page creation compared to post creation process. Therefore, we should notice a decrease in the number of queries executed in this process. Let's take a look at the executed queries:
INSERT INTO `wp_posts` (`post_author`, `post_date`, ........) VALUES (1, '2018-07-13 09:09:15',.......)UPDATE `wp_posts` SET `post_author` = 1, `post_date` = '2018-07-13 09:09:31', ..... WHERE `ID` = 49
As we anticipated, only two queries executed in this process. The first one creates the page on screen load and the next one updates the content when the user hits the Publish button. So, it's easier to manage pages ...
Read now
Unlock full access