CLASS_EXIST的意外行为

时间:2021-09-29 作者:attack-to-overflow

如果translate press插件处于活动状态,则一切正常,但当它处于非活动状态时,我会出现此错误

电话:

注意:未定义索引:链接/文件中的文本调用头。php第8行

我很困惑,因为redux和translate press是不同的插件。问题是什么?

注意:$redux\\u demo[\'text-call-header\']未定义。所以我预计误差大约为8。但是为什么只有当translate press被禁用时才会出现?

第8行:

echo $redux_demo[\'text-call-header\']; 
第30行:

                    if ( class_exists( \'TRP_Translate_Press\' ) ) {
                    ?>
                    <li>
                        <div class="dropdown lang-button text-center">
                            <button class="dropbtn color-white">Language</button>
                            <div class="dropdown-content" style="position: absolute; z-index: 9999!important; padding:unset!important; background-color: #f9f9f9;">
                                <?php echo do_shortcode(\'[language-switcher]\'); ?>

                            </div>
                        </div>
                    </li>
                    <?php } ?>

1 个回复
SO网友:Maulik Paddharia

出于临时目的,请尝试以下代码以避免错误-

if(isset($redux_demo[\'text-call-header\']))
{
  echo $redux_demo[\'text-call-header\']; 
}
如果需要更多帮助,请告诉我。

相关推荐