致命错误:在---- Wordpress插件错误中调用未定义的函数_e()

时间:2018-08-21 16:54:52

标签: wordpress fatal-error

我正在关注Wordpress for Developers中的教程。我开始调试代码,但我一直陷在这里。 我认为这可能是分号?我不确定。  代码如下:

 <div class="wrap">
                <h2><?php _e( 'Halloween Store Options', 'halloween-plugin' ) ?></h2>
                <form method="post" action="options.php">
                    <?php settings_fields ( 'halloween-settings-group' ); ?>
                    <table class="form-table">
                        <tr valign="top">
                            <th scope="row"><?php _e( 'Show Product Inventory', 'halloween-plugin' ); ?></th>
                            <td><input type="checkbox" name="halloween_options[show_inventory]" 
                                <?php echo checked( $hs_inventory, 'on' ); ?> /></td>
                        </tr>
                        <tr valign="top">
                            <th scope="row"><?php _e( 'Currency Sign', 'halloween-plugin' ) ?></th>
                            <td><input type="text" name="halloween_options[currency_sign]"
                                value="<?php echo esc_attr( $hs_currency_sign ); ?>"
                                size="1" maxlength="1" /></td>
                        </tr>
                    </table>
                    <p class="submit">
                        <input type="submit" class="button-primary"
                        value="<?php _e( 'Save Changes', 'halloween-plugin' ); ?>" />
                    </p>
                </form>
            </div>

如果有人可以帮助我,我将不胜感激。

1 个答案:

答案 0 :(得分:0)

在使用功能_e()之前,请尝试加载文件wp-load.php。

require_once('../../../wp-load.php');