首先,我为我的英语道歉,因为我的英语不好。
如何显示title of attached image 介于(<);h3>帖子中的标签?
wp includes/media中有该代码。php文件;
return \'<h3>\' . $atts[\'title\'] . \'</h3><div \' . $atts[\'id\'] . $style . \'class="\' . esc_attr( $class ) . \'">\'
. do_shortcode( $content ) . \'<p class="wp-caption-text">\' . $atts[\'caption\'] . \'</p></div>\';
。。。
$atts[\'caption\']
正在正确调用图像标题。但是
$atts[\'title\']
is不调用图像标题。
我试试这个;
$title = get_the_title( $attachment_id );
我在下面的代码中插入$title变量;
return \'<h3>\' . $title . \'</h3><div \' . $atts[\'id\'] . $style . \'class="\' . esc_attr( $class ) . \'">\'
. do_shortcode( $content ) . \'<p class="wp-caption-text">\' . $atts[\'caption\'] . \'</p></div>\';
但这种方式行不通。我能做什么?