Output from WP Pageeditor missing in template
-
When I use the wp-admin page editor to insert some html into my page, where is it inserted?
I created a uber-simple page template and used it for one of my pages. Then I went to the editor and put in some html which never showed up on my page. IS there a certain DIV I need in my template to receive the editor output?
What is the minimal code I need in my custom template that will read entries made through WP PageEditor and show up on the page?
I’m creating a child theme on top of thematic if that matters.
Here us my template:
<?php /* Template Name: Front Page */ ?> <?php get_header() ?> <div id="my_slideshow"> <?php show_showtime("id=12|width=960")?> </div><!-- my_slideshow --> <div id="container"> <div id="content"> <div class="entry-content"> </div> </div><!-- #content --> </div><!-- #container --> <?php get_footer() ?>
- The topic ‘Output from WP Pageeditor missing in template’ is closed to new replies.