0

I want to insert an HTML block with a Contact form 7 shortcode. How I can insert the HTML before the shortcode is being converted to HTML?

function custom_shortcode_func() {
    $html = <<<HTML
        <h1>[contact-form-7 id="10" title="Contact form 1"]</h1>
    HTML;

    return $html;
}
add_shortcode('test_form','custom_shortcode_func');

1 Answer 1

1

Use do_shortcode to process any shortcodes inside a string

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.