如果使用自定义代码提取图像,则可以调用alt\\u文本。如果您只是在搜索$alt文本,我希望这可能会对您有所帮助
$alt_text = get_post_meta($post->ID, \'_wp_attachment_image_alt\', true);
编辑1:
如果您是通过wordpress功能拖动图像,那么只有您可以看到alt标记也被拖动到输出中。<?php echo wp_get_attachment_image( get_the_ID(), array(\'700\', \'600\'), "", array( "class" => "img-responsive" ) ); ?>
如果您有一个仅使用URL手动调用的图像,则可以添加alt作为变量,该变量可能会提取alt详细信息,如下所示:
<img src="your method to call URL" alt="<?php echo $alt_text; ?>