⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 page-new.php

📁 php 开发的内容管理系统
💻 PHP
字号:
<?phprequire_once('admin.php');$title = __('New Page');$parent_file = 'post.php';$editing = true;require_once('admin-header.php');?><?php if ( isset($_GET['saved']) ) : ?><div id="message" class="updated fade"><p><strong><?php _e('Page saved.') ?> <a href="edit-pages.php"><?php _e('Manage pages'); ?> &raquo;</a></strong></p></div><?php endif; ?><?phpif ( current_user_can('edit_pages') ) {	$action = 'post';	$post = get_default_post_to_edit();	$post->post_status = 'static';	include('edit-page-form.php');}?><?php include('admin-footer.php'); ?> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -