插件激活后自动使用gutenberg HTML块创建页面

时间:2019-06-09 01:59:51

标签: php wordpress hook gutenberg-blocks

在插件激活后,我设法创建了一个页面。 我需要向创建的页面添加内容。所以我用下面的代码。问题在于它在页面中创建了经典编辑器,而不是gutenberg HTML编辑器。

register_activation_hook( __FILE__, 'my_plugin_install_function');

function my_plugin_install_function()
  {
   //post status and options
    $post = array(
          'comment_status' => 'closed',
          'ping_status' =>  'closed' ,
          'post_author' => get_current_user_id(),
          'post_date' => date('Y-m-d H:i:s'),
          'post_name' => 'Checklists',
          'post_status' => 'publish' ,
          'post_content'   => '[customization-shortcode]',
          'post_title' => 'Checklists',
          'post_type' => 'dash',
    );  
    //insert page and save the id
    $newvalue = wp_insert_post( $post, false );
    //save the id in the database
    update_option( 'hclpage', $newvalue );
  }

我希望将我的简码显示在gutenberg HTML块中,而不是经典编辑器中

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,我所做的就是更改以下行:

'post_content'   => '[customization-shortcode]',

'post_content'   => '<!-- wp:html -->[customization-shortcode]<!-- /wp:html -->',

这将创建一个普通的gutenberg HTML块,而不是旧的经典块。