我在使用PHP和Wordpress时遇到问题。
我正在尝试使用PHP添加图像,但是它不起作用
我尝试将其添加到href="">mycode image</a>
$image_url='https://image.flaticon.com/icons/svg/1256/1256650.svg';
$link = sprintf( "<a rel='nofollow' class='comment-reply-link' href='%s' onclick='%s' aria-label='%s'> $image_url</a>",
esc_url( add_query_arg( 'replytocom', $comment->comment_ID, get_permalink( $post->ID ) ) ) . "#" . $args['respond_id'],
$onclick,
esc_attr( sprintf( $args['reply_to_text'], $comment->comment_author ) ),
$args['reply_text']
);
答案 0 :(得分:1)
您必须将图像的URL绑定到src
标签的img
属性。
这是基本的HTML行为:
$image_url='https://image.flaticon.com/icons/svg/1256/1256650.svg';
$link = sprintf( "<a rel='nofollow' class='comment-reply-link' href='%s' onclick='%s' aria-label='%s'> <img src=\"$image_url\" /></a>",
esc_url( add_query_arg( 'replytocom', $comment->comment_ID, get_permalink( $post->ID ) ) ) . "#" . $args['respond_id'],
$onclick,
esc_attr( sprintf( $args['reply_to_text'], $comment->comment_author ) ),
$args['reply_text']
);