Wordpress中的非法字符串偏移警告

时间:2013-09-23 10:51:14

标签: php wordpress

我正面临错误/警告非法字符串偏移

我检查了所有代码但未找到错误原因。 使用以下函数我的主题样式正在运行代码是在function.php。

中的单词press主题中编写的
  

(!)SCREAM:忽略错误抑制   (!)警告:第140行的F:\ wamp \ www \ wordpress-3.6.1-newsduke \ wp-content \ themes \ hotnews \ functions \ theme-functions.php中的非法字符串偏移'face'

 function freshthemes_theme_styles() {

        /* Google fonts array */
        $google_fonts = array_keys( freshthemes_typography_get_google_fonts() );

        /* Define all the options that possibly have a unique Google font */
        $body_font = ft_get_option('body_font', 'Arial, Helvetica, san-serif');
        $heading_font = ft_get_option('heading_font', 'Arial, Helvetica, san-serif');
        $menu_nav_font = ft_get_option('menu_nav_font', 'Arial, Helvetica, san-serif');

        /* Get the font face for each option and put it in an array */
        $selected_fonts = array(
            $body_font['face'],
            $heading_font['face'],
            $menu_nav_font['face'],
        );

        /* Remove any duplicates in the list */
        $selected_fonts = array_unique($selected_fonts);

        /* If it is a Google font, go ahead and call the function to enqueue it */
        foreach ( $selected_fonts as $font ) {
            if ( in_array( $font, $google_fonts ) ) {
                freshthemes_typography_enqueue_google_font($font);
            }
        }

        // Register our styles.
        wp_register_style('main', get_stylesheet_uri(), false, THEME_VERSION, 'all');
        wp_register_style('prettyPhoto', THEME_DIR . '/stylesheets/prettyPhoto.css', false, THEME_VERSION, 'all');
        wp_register_style('responsive', THEME_DIR . '/stylesheets/responsive.css', false, THEME_VERSION, 'all');
        wp_register_style('custom-style', THEME_DIR . '/functions/framework/frontend/custom-style.css', false, filemtime(THEME_PATH . '/functions/framework/frontend/custom-style.css'), 'all');

        // Enqueue them.
        wp_enqueue_style('main');
        wp_enqueue_style('custom-style');
        wp_enqueue_style('prettyPhoto');
        wp_enqueue_style('responsive');
    }

2 个答案:

答案 0 :(得分:3)

$selected_fonts = array(
    $body_font['face'],
    $heading_font['face'],
    $menu_nav_font['face'],
);

这些变量中的一个或多个是一个字符串,您尝试像数组一样访问它,只有在使用数字键slammer访问它时才有效strlen-1

要确认这一点,请执行var_dump($body_font, $heading_font, $menu_nav_font)检查哪一个实际上不是数组,而是字符串。

答案 1 :(得分:2)

尝试:

$selected_fonts = array(
    $body_font,
    $heading_font,
    $menu_nav_font,
);

由于$ body_font,$ heading_font和$ menu_nav_font是字符串,使用那些作为数组将产生警告。

修改

更通用:

$selected_fonts = array(
    is_array($body_font) && isset($body_font['face']) ? $body_font['face'] : $body_font,
    is_array($heading_font) && isset($heading_font['face']) ? $heading_font['face'] : $heading_font,
    is_array($menu_nav_font) && isset($menu_nav_font['face']) ? $menu_nav_font['face'] : $menu_nav_font,
);