gpt4 book ai didi

wordpress - Carbon-fields 不显示制造的领域

转载 作者:行者123 更新时间:2023-12-04 14:22:13 27 4
gpt4 key购买 nike

我为主题选项创建容器并向其中添加字段数组。然后打开此选项页面,查看应添加字段的标题和空白 block 。如何显示字段?

碳场 2.1.0

use Carbon_Fields\Container;
use Carbon_Fields\Field;
Container::make( 'theme_options', __( 'Theme Options', 'crb' ) )
->add_fields( array(
Field::make( 'text', 'crb_text', 'Text Field' ),
) );

enter image description here

最佳答案

为了让 Carbon Fields 在插件中工作,我必须定义 Carbon_Fields\URL 的值来修复它。

我的插件根文件中的 Bootstrap 代码如下所示:

// Define the url where Carbon Fields assets will be enqueued from
define( 'Carbon_Fields\URL', trailingslashit( plugin_dir_url( __FILE__ ) ) . 'vendor/htmlburger/carbon-fields/' );

// Boot Carbon Fields
\Carbon_Fields\Carbon_Fields::boot();

// Return the class that sets up the settings pages
return new \MyPlugin\Settings();

您可以在此处查看所有可能在 Bootstrap 之前覆盖的碳场常量:https://github.com/htmlburger/carbon-fields/blob/development/config.php

关于wordpress - Carbon-fields 不显示制造的领域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53128991/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com