0

我用我的 wordpress 主题花了几个小时。它与 WP 版本 3.4/3.51 不兼容。当 DEBUG 设置为 TRUE / 可用时:出现许多通知。至于现在我已经完成了所有的通知,只剩下一个。我找不到任何解决方案。我希望有一个人可以帮助我。我只有基本的 PHP 知识。

注意:未定义的索引:输入

<?php foreach ($options as $value) { 
switch ( $value['type'] ){
case "section": $i++;  ?>   

这就是通知的用途: switch ( $value['type'] ){


这是页面的一部分。Itś 我的主题的主题选项页面。

    <form method="post" enctype="multipart/form-data" >         
    <div class="info top-info"> 
     <div class="settingsaved">
        <?php
// Form results if ( isset( $_REQUEST['saved'] ) ) echo '<div id="message" class="updated2 fade"><p><strong>Settings Saved</strong></p></div>';
if ( isset( $_REQUEST['reset'] ) ) echo '<div id="message" class="updated2 fade"><p><strong>Settings Reset</strong></p></div>';
?></div>        
<div style="float: right;"><input type="submit" name="save" class="button-primary  save-options" value="Save Changes"></div><div style="clear: both;"></div></div><div id="content" class="clearfix"><div id="options_tabs" class="ui-tabs">
<ul class="options_tabs ui-tabs-nav">
<?php foreach ($options as $value) { 
switch ( $value['type'] ){case "section": $i++;                 
?><li class="ui-state-default ui-corner-top">
<a href="#option_<?php echo $value['id']; ?>">
<?php if ($value['icon']){ ?>
<img src="<?php echo $theme_directory ?>mm/files/images/icons/<?php echo $value['icon'] ?>"/>   
<?php } ?>
div style=" display: inline-block; margin-left: 6px; margin-top: -1px;position: absolute;"><?php echo $value['name']; ?></div><span></span></a></li>
<?php break;
}}?>
</ul><?php foreach ($options as $value) {
switch ( $value['type'] ) {
// --> open the option section
case "open": ?><?php break;// --> create a subheadline
case "subhead": ?>
<div class="mmtheme-sub-header"> <h2> <?php echo $value['name']; ?>  
<div style="float: right;"><a href="#" class="info-icon">Description</a><div class="description"><div class="inner"><?php echo htmlspecialchars_decode( $value['desc'] ); ?></div></div></div> </h2></div>
<?php break;    
// --> close the option section
case "subhead2": ?>

这是 mm.php 的代码

链接到完整的 PHP 文件(mm-includes.php)

期待得到解决方案,在此先感谢!


&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

感谢特杰瑞!你解决了我的问题!

我还剩下一个通知,现在出现 - 下面是通知和来源。如果我把它从我的眼睛上拿下来很好,有人吗?

这是主题选项中的通知。

注意:使用未定义的常量 update_notifier - 在第 17 行的 \wp-content \themes\bardot\includes\update_notifier.php 中假设为“update_notifier”

*第 17 行 *

    add_dashboard_page( $theme_data['Name'] . 'Theme Updates ', '&nbsp;<span class="update-plugins 

count-2"><span class="update-count">New Theme Update</span></span>', 'administrator','m3-

updates', update_notifier);
4

1 回答 1

1

switch如果您在语句之前插入它,您的通知将消失,因为如果未设置该值,将跳过 switch 块。

if(!isset($value['type']))
    continue;
于 2013-05-11T17:58:50.383 回答