2016-01-31 90 views
0

從今天起,我開始學習wordpress的自定義主題開發,當前我試圖爲標題裁剪圖像時顯示錯誤。以下是示例代碼。無法在我的自定義WordPress主題圖像中裁剪標題圖像

(1.我已經設置的鉤頭圖像的functions.php

add_theme_support('custom-header'); 

(2.設置的header.php

<img class="myhead" src="<?php header_image(); ?>" height="<?php get_custom_header()->height ?>" 
      width="<?php get_custom_header()->width ?>" alt=""> 

(3.Tested如果內部圖像圖像將顯示在標題內部,圖像以實際尺寸顯示

我將如何在自定義中自定義標題圖像?我很樂意聽取您的意見。

+0

你使用哪一個主題? –

回答

3

flex-width & flex-height是自行調節,

$args = array(
     'flex-width' => true, 
     'width'   => 980, 
     'flex-height' => true, 
     'height'  => 200, 
     'default-image' => get_template_directory_uri() . '/images/header.jpg', 
    ); 
    add_theme_support('custom-header', $args); 

更新您的header.php

<img alt="" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" />