1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【覚書】WP:アイキャッチ画像のlightbox化

Posted at

http://sysana.com/stinger3%E3%81%A7%E5%8D%98%E4%B8%80%E8%A8%98%E4%BA%8B%E3%81%AE%E6%8A%95%E7%A8%BF%E6%96%87%E6%9B%B8%E3%81%AB%E3%82%A2%E3%82%A4%E3%82%AD%E3%83%A3%E3%83%83%E3%83%81%E7%94%BB%E5%83%8F%E3%82%92%E8%A1%A8/

参考にしました
使用したプラグインは WP jQuery lightbox

<?php if ( has_post_thumbnail() ): ?>
<?php $src_info = wp_get_attachment_image_src(get_post_thumbnail_id(),'full'); ?>
<a href="<?php echo $src_info[0] ?>" rel="lightbox">
<?php the_post_thumbnail('medium'); ?>
</a>

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?