1

当我通过 Carbon fields 插件注册主题选项时,我看到 crb_carbon_fields_container 包含在永久链接中。我想删除它。

function setting_page(){
    Container::make( 'theme_options', __( 'Theme Options' ) )
    ->add_fields( array(
        Field::make( 'text', 'crb_facebook_url', __( 'Facebook URL' ) ),
        Field::make( 'textarea', 'crb_footer_text', __( 'Footer Text' ) )
    ) );
}
add_action('carbon_fields_register_fields','setting_page');

当前固定链接:https ://prnt.sc/21p595m

预期永久链接:https ://prnt.sc/21p5eit

4

0 回答 0