How to escape echo?

时间:2020-01-06 作者:esel

我刚刚添加了几个社交媒体图标来共享当前帖子。下面是pinterest的代码(示例目的)。但是评论家说echo应该逃过一劫。

为什么评论者指出它是为了逃避“回声”,以及如何做到这一点。。。

<!-- pinterest -->
<a href="https://pinterest.com/pin/create/bookmarklet/?media=<?php echo get_the_post_thumbnail_url(); ?>&url=<?php echo get_permalink(); ?>&is_video=false&description=<?php echo get_the_title(); ?>" target="blank"><i class="fab fa-pinterest-square"></i></a>

1 个回复
SO网友:esel

不要使用echo,因为WordPress已经定义了它。因此,请按如下所示使用:

<?php the_post_thumbnail(); ?>
<?php the_permalink(); ?>
<?php the_title(); ?>

相关推荐