当主题被激活时自动创建页面

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.
  1. // Automatically Create Page When Theme Is Activated
  2. $page_check = get_page_by_title('Sermon Media');
  3. $page_check_id = $page_check->ID;
  4. $new_page = array(
  5. 'post_type' => 'page',
  6. 'post_title' => 'Sermon Media',
  7. 'post_status' => 'publish',
  8. 'post_author' => 1,
  9. );
  10. if(!isset($page_check_id)){
  11. wp_insert_post($new_page);
  12. $new_page_data = get_page_by_title('Page Title');
  13. $new_page_id = $new_page_data->ID;
  14. update_post_meta($new_page_id, '_wp_page_template','page-template.php');
  15. }

以上是关于当主题被激活时自动创建页面的主要内容,如果未能解决你的问题,请参考以下文章

自动创建主题激活页面

Wordpress 在主题激活时创建页面 - 使用此功能添加子页面

当片段被替换并且再次可见时回调

主题激活时自动在“主菜单”位置设置菜单

webstorm代码片段的创建

当活动被破坏但我必须继续执行片段中的代码时该怎么办?