当我通过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
1条答案
按热度按时间vfh0ocws1#
可以在容器上使用
->set_page_file('url')
方法。