在填充了标题字段的图像中自动添加标题快捷代码

时间:2015-03-25 作者:Andrew

我希望当你添加一张填充了标题字段的图像时,[标题]快捷码能够自动插入到帖子内容区域。我相信这应该是WordPress的默认功能。函数中是否有我需要声明的内容。php文件可以在我的自定义主题中实现这一点吗?

谢谢

1 个回复
SO网友:Andrew

做了更多的挖掘,这似乎与我的主题有冲突:

add_filter( \'post_thumbnail_html\', \'remove_width_attribute\', 10 );
add_filter( \'image_send_to_editor\', \'remove_width_attribute\', 10 );
function remove_width_attribute( $html ) {
  $html = preg_replace( \'/(width|height)="\\d*"\\s/\', "", $html );
  return $html;
}

结束

相关推荐

Are captions stored anywhere?

关于我之前的question about shortcode captions, 在我看来,标题的实际文本并不是存储在短代码本身的帖子内容之外的任何地方。我会认为wp_get_attachment_metadata 将存储附件的信息,但它不会。我错了吗?或者WordPress没有在任何地方存储实际的标题?