How to Embed Contact Form 7 Short in HTML?

7.1k Views Asked by At

I need to embed the Contact Form 7 shortcode in HTML. I've tried the following, but it's not rendering for some reason:

<div class="services-contact">
<?php echo do_shortcode('[contact-form-7 id="1442" title="Service 1"]'); ?>
</div>

What am I doing wrong?

EDIT: When I do the inspect, the code gets commented out in HTML.

4

There are 4 best solutions below

1
On

You can try with this code :

<?php $contact='[contact-form-7 id="1442" title="Service 1 "]'?>
<?php echo do_shortcode($contact);?>
2
On

your method is correct but you can also try this apply_filters('the_content','[contact-form-7 id="1442" title="Service 1"]') also please make sure there is a contact form 7 exists with the id, '1442'

5
On

You can't embed it into a HTML file, you need to have a .PHP file connected to a server with wordpress installed on it so the php functions and wordpress functions could work.

0
On

I tried to insert an URL and it worked:

<a href="https://[contact-form-7 id="10742" title="Register"]">

Hope it resolves your problem