Fatal error: Call to a member function render_fields_for_input()
-
You plugin looks very interesting but somehow it doesn’t work for me. Can you help me out? ??
When I click “Edit” I get error:
Fatal error: Call to a member function render_fields_for_input() on a non-object in /home/virtual/uczy1/www/wp-content/plugins/live-edit/live-edit.php on line 498
This is my template code:
<?php // Display this loop for pages
if (is_page()) { ?><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>" <?php post_class(); if(function_exists("live_edit")){ live_edit('post_content'); } ?>>
<h1 class="post-title page-title"><?php the_title(); ?></h1>
<div class="post-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div id="pagination"><span class="pages">' . __( 'Pages', 'huddle' ) . '</span>', 'after' => '</div>', 'link_before' => '<span class="page-link">', 'link_after' => '</span>' ) ); ?>
</div>
</div><!--post-->
<?php endwhile; endif; ?>Thanks in advance!
- The topic ‘Fatal error: Call to a member function render_fields_for_input()’ is closed to new replies.