January 10, 2014 at 17:43 /
You can use the widget for that. If you want to execute it on another place wordpress had a function for it:
1 2 3 4 5 6 |
$args = array( 'before_widget' => '<div class="widget">', 'after_widget' => '</div></div>', 'before_title' => '<div class="widgetTittle">', 'after_title' => '</div><div class="widgetBody">' ); the_widget('WP_Widget_Pages', null, $args); |
Or you change the target of forms to the main form with javascript.
Regards