Skip to content

Instantly share code, notes, and snippets.

@mypacecreator
Last active December 28, 2015 11:58
Show Gist options
  • Save mypacecreator/7496792 to your computer and use it in GitHub Desktop.
Save mypacecreator/7496792 to your computer and use it in GitHub Desktop.
アイキャッチ画像をポップアップに
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php
$popupimg_id = get_post_thumbnail_id();
$popupimg_url = wp_get_attachment_image_src($popupimg_id,'full', true);
echo esc_url($popupimg_url[0]);
?>"><?php the_post_thumbnail(); ?></a>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment