自动创建主题激活页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动创建主题激活页面相关的知识,希望对你有一定的参考价值。
if ($_GET['activated']){ $new_page_title = 'This is the page title'; $new_page_content = 'This is the page content'; $new_page_template = ''; //ex. template-custom.php. Leave blank if you don't want a custom page template. //don't change the code bellow, unless you know what you're doing $page_check = get_page_by_title($new_page_title); 'post_type' => 'page', 'post_title' => $new_page_title, 'post_content' => $new_page_content, 'post_status' => 'publish', 'post_author' => 1, ); $new_page_id = wp_insert_post($new_page); update_post_meta($new_page_id, '_wp_page_template', $new_page_template); } } }
以上是关于自动创建主题激活页面的主要内容,如果未能解决你的问题,请参考以下文章
使用自定义帖子名称自动创建一个链接,该链接返回到自定义帖子存档页面(包括主题 slug)