在WordPress网站中添加社交媒体分享按钮可以使用插件或手动添加代码。
使用插件:
手动添加代码:
<div class="social-sharing-buttons">
<a href="https://twitter.com/intent/tweet?url=<?php the_permalink(); ?>&text=<?php the_title(); ?>" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://www.linkedin.com/shareArticle?url=<?php the_permalink(); ?>&title=<?php the_title(); ?>" target="_blank"><i class="fa fa-linkedin"></i></a>
<a href="https://pinterest.com/pin/create/button/?url=<?php the_permalink(); ?>&media=<?php echo wp_get_attachment_url( get_post_thumbnail_id() ); ?>&description=<?php the_title(); ?>" target="_blank"><i class="fa fa-pinterest"></i></a>
</div>
以上代码使用Font Awesome图标字体库,并使用PHP代码获取文章标题和URL。如果需要使用其他图标库或自定义配置,请根据需要修改代码。