Hello Friends,
If you are new in WP and you would like to use short code, get the knowledge of this as below.
Short code is a simple piece of code use in POST or PAGE to invoke set of functionality. For example Contact Form 7 provide
[contact-form-7 id="153" title="Contact form 1"]
We just use this code on our page and a complete functionality of a Contact form start working. We can use this short code on our page as below:
<div class="mainContainer container contact-us">
<?php
echo do_shortcode( '[contact-form-7 id="153" title="Contact form 1"]' );
?>
</div>
Now you can enjoy contact on your wordpress website.
0 Comment(s)