Добрый день.
Есть две формы.
Создал их в плагине contact form 7.
С помощью carbon fields создал 2 поля
add_action( 'carbon_fields_register_fields', 'crb_attach_theme_options' );
function crb_attach_theme_options() {
Container::make( 'theme_options', __( 'Theme Options' ) )
->add_fields( array(
Field::make( 'text', 'crb_form_header', 'Форма из шапки' )
->set_help_text( 'Добавьте шорткод из плагин Contact form 7' )
) );
}
В админке в эти поля вставил шорткоды из contact form 7.
А как теперь вывести?
Заранее благодарен.