sql >> データベース >  >> RDS >> Mysql

MySqlを使用してWordpressに投稿を挿入する

    Postオブジェクトを使用できます:

    // Create post object
      $my_post = array();
      $my_post['post_title'] = 'My post';
      $my_post['post_content'] = 'This is my post.';
      $my_post['post_status'] = 'publish';
      $my_post['post_author'] = 1;
      $my_post['post_category'] = array(8,39);
    
    // Insert the post into the database
      wp_insert_post( $my_post );
    

    詳細については、こちら をご覧ください。 。



    1. virtualenv pip mysqldb mac os X python

    2. Oracle After Delete Trigger ...テーブルの変更を回避する方法(ORA-04091)?

    3. OracleRACネットワークおよびIP情報の確認

    4. 引用符に一貫性のないCSVファイルのSQLServer一括挿入