0

我正在使用Version: 2.0Twentyten 主题。我想将此主题用于我的博客网站,我正在使用子主题开发我的博客网站。该主题具有标题图像功能,可在显示页面或单个帖子时灵活使用。

我的意思是在页面中,标题图像是页面特色图像。当我在单个帖子中时,它具有帖子特色图片。然后在 index.php 中它具有默认图像。现在我的问题是我在子主题functions.php文件中的以下代码中做错了什么。

function twentyten_setup_another() {
    $custom_header_supportp = array(
        'width' => apply_filters( 'twentyten_header_image_width', 980 ),
        'height' => apply_filters( 'twentyten_header_image_height', 224 ),
    );
}
add_action( 'after_setup_theme', 'twentyten_setup_another' );

在标题图像部分中没有显示上述功能。我的意思是当我将这些代码放在子主题functions.php中时,标题图像的灵活性已被删除。

4

1 回答 1

0

每当您使用动作挂钩时,return您都需要这样做:echo

function twentyten_setup_another() {
    $custom_header_supportp = array(
        'width' => apply_filters( 'twentyten_header_image_width', 980 ),
        'height' => apply_filters( 'twentyten_header_image_height', 224 ),
    );

    return $custom_header_supportp;
}
add_action( 'after_setup_theme', 'twentyten_setup_another' );
于 2015-12-21T13:29:43.797 回答