admin 管理员组文章数量: 1086019
I am trying to modify the caption of images in posts by filtering img_caption_shortcode
, and then displaying the content using the_content()
. I want to add bylines/credit on images, so I have created two fields in ACF that should be added inside the <figcaption>
on all my posts. Basically I want to do what is description in the blog.
So from this:
<figcaption>
So this is a caption that describes the image.
</figcaption>
To this:
<figcaption class="post-thumbnail-caption">
So this is a caption that describes the image.
<span class="wp-block-image-byline">Photo: Gregor Gregson</span>
</figcaption>
I have tried just doing it as simple as possible, but I can not get it to work. Nothing happans/changes with the following code in my functions.php
(I did first try the whole code from the example in the blog linked above).
add_filter( 'img_caption_shortcode', 'my_img_caption_shortcode', 10, 3 );
function my_img_caption_shortcode( $output, $attr, $content ) {
$output = 'test';
return $output;
}
Any ideas on what I could be doing wrong?
本文标签: filtersHow to modify image caption in posts
版权声明:本文标题:filters - How to modify image caption in posts? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://roclinux.cn/p/1744059886a2526529.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论