当主题被激活时自动创建页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当主题被激活时自动创建页面相关的知识,希望对你有一定的参考价值。
Simply replace 'Page Title' with your desired page title to automatically create the page when your theme is activated. Thanks to MattStrange for the original concept.
// Automatically Create Page When Theme Is Activated $page_check = get_page_by_title('Sermon Media'); $page_check_id = $page_check->ID; 'post_type' => 'page', 'post_title' => 'Sermon Media', 'post_status' => 'publish', 'post_author' => 1, ); wp_insert_post($new_page); $new_page_data = get_page_by_title('Page Title'); $new_page_id = $new_page_data->ID; }
以上是关于当主题被激活时自动创建页面的主要内容,如果未能解决你的问题,请参考以下文章