Adding multiple WYSIWYG in a single page
-
I’m creating a CMS website for client, and the website front page is compose of header, footer, content, content2 and sidebar.
Normally I would use:
////////////////////////////////////<?php the_title(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>////////////////////////////////////
to render the contents from the editor page from single.php
The problem now is that client insist on having editing capability not only for the content but for content2 and sidebar as well….
is it possible?
[ Please don’t bump, that’s not permitted here. ]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Adding multiple WYSIWYG in a single page’ is closed to new replies.