views:

390

answers:

1

Hi, I am trying to intergrate this http://www.sohtanaka.com/web-design/easy-toggle-jquery-tutorial/ into wordpress. IS there a way to get custom divs for certain post I basicly just want to make a page like this http://s72956.gridserver.com/dev/toggle/toggle.html updatible in wordpress.. any Ideas?

+1  A: 

If you wanted to make a Wordpress page, you could use custom page templates, so that the specific page looked different than the rest of the site.

To do that, you would need to make a copy of single.php, change the HTML that you wanted to, and add this (below) to the top of the file. Then place it into your theme directory, and choose it as a page template on the page editor.

/*
Page Template: Template Name
*/

Reference here for more info.

Chacha102