我有以下代码段用于调用帖子作者、时间和类别
<?php
printf( __( '<span>%s</span> by %s in %s', 'xxxx' ),
get_the_time( 'M j' ),
et_get_the_author_posts_link(),
get_the_category_list( ', ' )
);
?>
我想用图像替换“by”(作者之前)和“in”(类别之前)
我尝试了几种调用图像的方法,但都失败了。对此的任何帮助都会很棒。
谢谢