logo
  • 教程列表
  • SO官方文檔
  • 以程式設計方式建立帖子
    • 建立一個基本頁面
    • 建立基本帖子
    • 程式設計寫作帖子介紹
  1. StackOverflow 文件
  2. WordPress 教程
  3. 以程式設計方式建立帖子
  4. 建立基本帖子

建立基本帖子

Created: November-22, 2018

$basic_post_args = array(
    'post_title' => 'My Basic Post',
    'post_content' => 'This is a basic content',
    'post_status' => 'publish',
    'post_author' => 1,
    'post_category' => array(8, 59)
);

wp_insert_post( $basic_post_args );
  • 程式設計寫作帖子介紹
  • 建立一個基本頁面

Copyright © 2018. All right reserved

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

  • 關於本站
  • 免責聲明