繁体   English   中英

WordPress:在上传时将“精选特色图片” alt标签更改为给定的alt标签

[英]Wordpress: Change Post Featured Image alt tags to the given alt tag while uploading

我在上传时为图像提供了alt标签,但没有采用给定的图像alt标签,显示为空白

我试图添加此过滤器,但仍然无法正常工作

/* Register callback function for post_thumbnail_html filter hook */
add_filter( 'post_thumbnail_html', 'meks_post_thumbnail_alt_change', 10, 5 );

/* Function which will replace alt atribute to post title */
function meks_post_thumbnail_alt_change( $html, $post_id, $post_thumbnail_id, $size, $attr ) {

    $post_title = get_the_title();
    $html = preg_replace( '/(alt=")(.*?)(")/i', '$1'.esc_attr( $post_title ).'$3', $html );

    return $html;

}

帖子内容从loop-single.php文件显示

<div class="entry-content">
    <?php the_content(); ?>
    <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->

如何在我的帖子精选图片中使用这些alt标签

试试这个对我有用:)

function change_post_thumbnail_html($html, $post_id, $post_thumbnail_id, $size, $attr) {
    $id = get_post_thumbnail_id();
    $src = wp_get_attachment_image_src($id, $size); 
    $alt = get_the_title($id); // gets the post thumbnail title
    $class = $attr['class'];
    $html = '<img src="' . $src[0] . '" alt="' . $alt . '" class="' . $class . '" />';
    return $html;
}
add_filter('post_thumbnail_html', 'change_post_thumbnail_html', 99, 5);

好吧,我发现了错误,似乎以前的开发人员将图像手动添加到了帖子中,并且还设置了特色图像。 所以我很困惑。

我只是直接将替代文本直接置于帖子的编辑模式下。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM