在GET_CUSTOM_HEADER中添加额度

时间:2013-03-06 作者:Christopher

找了一段时间,我不知道怎么用get_custom_header 获取与媒体文件关联的alt文本,以便我可以将照片信用添加到网站的标题中。我错过什么了吗?

添加标题图像的代码为:

<img src="<?php header_image(); ?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="" />
Theget_custom_header 函数似乎没有办法拉入alt文本。

2 个回复
最合适的回答,由SO网友:Donny Adkins 整理而成

将此用于alt="" 自定义标头上的属性<img> 标记…

alt="<?php  
$attachment_id = get_custom_header()->attachment_id;
$alt = get_post_meta( $attachment_id, \'_wp_attachment_image_alt\', true );
if ( count( $alt ) ) echo $alt;
?>" />
…然后只需编辑媒体附件并添加alt文本。

SO网友:jfacemyer

Try:

get_custom_header()->description
结束

相关推荐

ADD_THEME_SUPPORT(‘CUSTOM-HEADER’)不在仪表板中添加选项菜单

我正在根据工具箱主题从头开始写一个新主题。我的WP安装是开箱即用的。我添加了add\\u theme\\u支持(“custom-header”);我的职能。php文件,但“标题”选项屏幕不会显示在仪表板中。如果我访问该站点,我可以在顶部的工具栏中看到它,但不能在仪表板中看到它。我错过什么了吗?