• Hi guys
    i am having real difs getting the HTML tab working within my site
    does anyone know is it possible to edit the HTML code without using the WP-Admin area?? I am basically trying to add a WuFoo form to a page and need access to the code to add it 🙁
    cheers!

Viewing 1 replies (of 1 total)
  • Moderator Kathryn Presner

    (@zoonini)

    When I need to add a third-party form within a page I just use a PHP include within the page.php template and put the contents of the form into a separate template file. Much less hassle as WP adds too many <p> and tags otherwise, throwing off my form layouts.

    Example – under the_content(); line, I add:

    <?php if (is_page('your-page-slug') ): include ("contact-form.php"); endif; ?>

    Would this work in your case?

Viewing 1 replies (of 1 total)
  • The topic ‘editing HTML in a post outside of the WP-ADMIN?’ is closed to new replies.