我正在尝试在我的WP产品组合中加载徽标。这是我在函数中使用的代码:
$args = array(
'width' => 187,
'height' => 40,
'default-image' => get_template_directory_uri(). '/mauricio_bootstrap/img/portfolio.png',
);
add_theme_support( 'custom_header', $args );
这就是我在标题中的内容:
<a class="brand" href="<?php echo site_url(); ?>"> <img src="<?php header_image(); ?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="" /> </a>
我知道这个功能是在标题中加载图像。我正在使用Twitter bootstrap,我只想在标题中加载一个徽标。如果有人有更好的建议我就会开放。