我的代码第 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);