我正在尝试使用PHP添加图像

时间:2019-02-28 13:39:20

标签: php wordpress

我在使用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']
);

1 个答案:

答案 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']
);