0

エラーに直面しています/警告文字列オフセットが不正です

すべてのコードをチェックしましたが、エラーの理由は見つかりませんでした。以下の関数を使用すると、私のテーマ スタイルが機能し、コードは function.php のワード プレス テーマで記述されます。

( ! ) SCREAM: エラー抑制は無視されました ( ! ) 警告: F:\wamp\www\wordpress-3.6.1-newsduke\wp-content\themes\hotnews\functions\theme-functions の無効な文字列オフセット 'face'。 php 140行目

 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');
    }
4

2 に答える 2

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

これらの変数の 1 つまたは複数は、配列のようにアクセスしようとしている文字列です。strlen-1

これを確認するには、var_dump($body_font, $heading_font, $menu_nav_font)どれが実際には配列ではなく文字列であるかを確認します。

于 2013-09-23T10:58:21.413 に答える
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,
);
于 2013-09-23T11:11:07.280 に答える