Re: Newsletter subscription where Loop-Meta text is located

#957
admin
Participant

Hi,

Is there any way I can put a mail form where the loop-meta text is currently located?

“Loop Meta Text” means the sub-heading sections like Blog, etc. You may place your data here OR the best place is to use Page Template either Default or Full Width.

I have mailchimp form data that I was given a code for, to input into posts or pages: [mc4wp-form]

[mc4wp-form] means a shortcode for mailchimp. Here are two options,

  • You can place this shortcode directly in the editor and rest will be handled by WordPress itself. Example: http://themes.designorbital.com/contango/contact/ – Here we are using shortcode for Contact Form 7 – Shortcode is [contact-form-7 id=”4″ title=”Contact form 1″]
  • You can write shortcode directly in the PHP file, e.g.

[PHP]// Use shortcode in a PHP file (outside the post editor).
echo do_shortcode(‘[mc4wp-form]’);[/PHP]

do_shortcode reference

Thanks