2

我正在创建自定义 ACF Gutenberg 阻止我的网站,并成功地注册了我自己的块。现在,我有一个名为Blog. 我不想blog显示我所有的 ACF Gutenberg 块,我想创建一个单独的批次,仅供自定义帖子类型使用。我已启用show_in_rest,但即使是默认的古腾堡博客也不显示给我?

这是我的方法:

1.注册帖子类型(theme/functions.php

<?php
register_post_type('Blog', theme_build_post_args('Blog', 'Blog', 'Blog', array(
    'show_in_rest' => true,
    'menu_icon' => 'dashicons-edit',
    'menu_position' => 20,
    'has_archive' => true,
    'public' => true,
    'supports' => array(
        'editor',
        'title',
        'author',
        'revisions',
        'excerpt',
        'thumbnail'
    ) ,
)));

?>

2. 为页面注册 ACF Gutenberg 块(theme/inc/acf-blocks/blocks.php

以下是我注册用于页面(而不是blog帖子类型)的块:

<?php
$hero = array(
    'name' => 'hero',
    'title' => __('Hero') ,
    'description' => __('') ,
    'render_callback' => 'block_render',
    'category' => 'formatting',
    'icon' => 'admin-comments',
    'keywords' => array(
        'hero'
    ) ,
);

$blocks = [$hero];

return $blocks;

?>

  1. 为博客文章类型注册 ACF Gutenberg 块 ( theme/inc/acf-blocks/blog-blocks.php )

<?php
$blog_hero = array(
    'name' => 'blog_hero',
    'title' => __('Blog hero') ,
    'description' => __('') ,
    'render_callback' => 'block_render',
    'category' => 'formatting',
    'icon' => 'admin-comments',
    'keywords' => array(
        'hero',
        'blog'
    ) ,
);

$blog_blocks = [$blog_hero];

return $blog_blocks;

?>

  1. 注册所有块(主题/inc/acf-blocks/functions.php

<?php

/*
* loop though array and register each block type
*/

function block_acf_init(){
  $path = get_template_directory().'/inc/acf-blocks/blocks.php';
  $blocks = require($path);
  foreach($blocks as $block) {
    acf_register_block_type($block);
  }
}

function blog_acf_init(){
  $path = get_template_directory().'/inc/acf-blocks/blog-blocks.php';
  $blog_blocks = require($path);
  foreach($blog_blocks as $blog_block) {
    acf_register_block_type($blog_block);
  }
}


// Check if function exists, and hook into setup
if( function_exists('acf_register_block_type') ) {
  add_action('acf/init', 'block_acf_init');
  add_action('acf/init', 'blog_acf_init');
}


?>

当前结果:

在自定义帖子类型上创建帖子时blog,我无法添加任何块,更不用说查看是否blog_hero出现块:

在此处输入图像描述

在页面上,我可以看到我创建的所有块,但是,blog hero当我只希望它用于自定义帖子类型时,该块显示在页面一侧:

在此处输入图像描述

4

1 回答 1

0

可能这种方式可以解决问题:

为博客英雄块指定post_types参数到博客

$blog_hero = array(
    'name'            => 'blog_hero',
    'title'           => __( 'Blog hero', 'Context' ),
    'description'     => __( '', 'Context' ),
    'render_callback' => 'block_render',
    'category'        => 'formatting',
    'icon'            => 'admin-comments',
    'keywords'        => array(
        'hero',
        'blog'
    ),
    'post_types'      => array( 'blog' ),
);

并类推地为 Hero 块指定除博客之外的所有帖子类型。

$all_post_types        = get_post_types();
$hero_block_post_types = array_diff( $all_post_types, array( 'blog' ) );

$hero = array(
    'name'            => 'hero',
    'title'           => __( 'Hero', 'Domain' ),
    'description'     => __( '', 'Domain' ),
    'render_callback' => 'block_render',
    'category'        => 'formatting',
    'icon'            => 'admin-comments',
    'keywords'        => array(
        'hero'
    ),
    'post_types'      => $hero_block_post_types
);

$blocks = [ $hero ];

return $blocks;

注意:

考虑为您的__函数添加域。__将函数与域一起使用的好习惯。

于 2021-01-25T20:12:05.210 回答