logo
  • 教程列表
  • SO官方文档
  • 以编程方式创建帖子
    • 创建一个基本页面
    • 创建基本帖子
    • 编程写作帖子介绍
  1. StackOverflow 文档
  2. WordPress 教程
  3. 以编程方式创建帖子
  4. 创建一个基本页面

创建一个基本页面

Created: November-22, 2018

$basic_page_args = array(
    'post_title' => 'My Basic Page',
    'post_content' => 'This is a basic content',
    'post_type' => 'page',
    'post_status' => 'publish',
    'post_author' => 1
);

wp_insert_post( $basic_page_args );
  • 创建基本帖子
  • 以编程方式创建帖子

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明