dongpin2969 2016-01-31 09:38
浏览 44
已采纳

无法在我的自定义主题中为WordPress裁剪标题图像

From today I started to learn custom theme development for wordpress, and I'm currently stuck with the problem that shows a error when I try to crop the image for the header. Here is the sample code below.

(1. I had set the hook for the header image the functions.php

add_theme_support('custom-header');

(2. Set the image inside the header.php

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

(3.Tested if the image will be displayed inside the header. The image was displayed in the actual size.

How will I able to customize the header image in the Customize ? I would love to hear from you.

  • 写回答

1条回答 默认 最新

  • dongpu2694 2016-01-31 09:55
    关注

    flex-width & flex-heightare adjust itself,

     $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 );
    

    Update you header.php

    <img alt="" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" />
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?