【发布时间】:2012-11-26 19:09:18
【问题描述】:
我在这里尝试使用 Wordpress page.ly MultiEdit 插件: http://wordpress.org/extend/plugins/pagely-multiedit/
我无法让它正常工作。我收到一个错误:
Bottom、Left、Bottom、Left 区域未在模板中声明。
这是截图。
这是我创建的模板文件的代码:
<?php
/*
Template Name: Home
MultiEdit: Right
*/
?>
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="content">
<?php the_content(); ?>
</div>
<div class="sidecontent">
<?php multieditDisplay(‘Right’); ?>
</div>
<?php endwhile; endif; ?>
<?php get_footer(); ?>
我错过了什么吗?
谢谢。
【问题讨论】:
标签: html wordpress plugins themes