0

我的代码第 3 行出现某种错误,我似乎无法弄清楚。以下是它输出的错误以及我的代码。

致命错误:在第 3 行调用非对象上的成员函数 the_meta()

<?php $meta = $custom_metabox->the_meta('description', TRUE); 
if (!empty($meta)): 
echo '<p class="description">'.$meta['description'].'</p>'; ?>
<?php endif; ?>

<br>

<ul id="process"><span>Process: </span></ul>

<br>

<ul class="credits">
<?php if(the_meta()) { the_meta(); } ?>
    <li class="shorturl"><span>Short Url: </span>
        <div id="d_clip_container">
            <input id="fe_text" onChange="clip.setText(this.value)" type="text" value="<?php echo bitly(); ?>" />
        <div id="d_clip_button" class="my_clip_button"></div>
        </div>
    </li>
    <li class="save"><span>Save: </span> <a class="gimmebar" href="#">Gimme Bar</a></li>                
</ul>
</div> <!-- End Info -->

<?php get_search_form(); ?>

这是第 3 行 <?php $meta = $custom_metabox->the_meta('description', TRUE);

4

1 回答 1

1

您可能在代码中遗漏了某些内容。请看第 3 行:$custom_metabox->the_meta('description', TRUE).. 现在看第 13 行:if(the_meta()) { the_meta(); }在您的代码的一部分中,您使用了the_meta()作为成员函数,而在另一部分中,您将其用作一般函数..这怎么可能是对的?首先确保它the_meta()是否在课堂上,而不是正确调用它......

更新:

好的,在 wpalchemy 手册中进行一些搜索,我得到了问题所在..您应该在您的中构建$custom_metaboxas a以便能够将元框包含在模板中..阅读此处..WPAlchemy_MetaBoxfunctions.php

样本:

$custom_metabox = new WPAlchemy_MetaBox(array
(
    'id' => '_custom_meta',
    'title' => 'My Custom Meta',
    'template' => STYLESHEETPATH . '/custom/meta.php'
));

当你现在拥有它时,你应该在你的模板中包含这些函数......

手册中提供的示例代码:

// usually needed
global $custom_metabox;

// get the meta data for the current post
$custom_metabox->the_meta();

// set current field, then get value
$custom_metabox->the_field('name');
$custom_metabox->the_value();

// get value directly
$custom_metabox->the_value('description');

// loop a set of fields
while($custom_metabox->have_fields('authors'))
{
    $custom_metabox->the_value();
}

// loop a set of field groups
while($custom_metabox->have_fields('links'))
{
    $custom_metabox->the_value('title');

    $custom_metabox->the_value('url');

    if ($custom_metabox->get_the_value('nofollow')) echo 'is-nofollow';

    $custom_metabox->the_value('target');
}

* 注意global $custom_metabox;顶部的 * * 你也应该使用它,$custom_metabox->the_meta();而不仅仅是普通the_meta();的..

于 2012-09-21T17:36:51.000 回答