skip to Main Content

I have created a landing page theme for wordpress. Now I want to integrate plugin support to my theme.
How can I implement functionallity for these plugins?

  • Yoast SEO
  • Contact Form 7
  • Mailchimp

I really need your help.
Thank you in advance.

2

Answers


  1. 1) Yoast SEO

    You only need to have the wp_head() function called in the <head> tag in your header.php

    2) Contact Form 7

    The best way to do this is to install the plugin, and then to style it properly. It will be best if you use the contact form 7 standard classes to match up with your design

    3) Mailchimp

    You can use some plugins like this. Then add one form and do the design.

    Login or Signup to reply.
  2. Make sure to include the wp_head() function in your site’s <head> and the wp_footer() function just before your closing </body> tag and these plugins should be supported by your theme.

    https://codex.wordpress.org/Function_Reference/wp_head

    https://codex.wordpress.org/Function_Reference/wp_footer

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search