Skip to content

Instantly share code, notes, and snippets.

@steelydylan
Created August 5, 2021 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steelydylan/f3cb5f315b8c8f30d991160a562ba90d to your computer and use it in GitHub Desktop.
Save steelydylan/f3cb5f315b8c8f30d991160a562ba90d to your computer and use it in GitHub Desktop.
<li>
「<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>」の投稿IDは「<span style="color:skyblue"><?php echo get_the_ID(); ?></span>」
タグIDは「<?php
$posttags = get_the_tags();
if ( $posttags ) {
foreach ( $posttags as $tag ) {
echo $tag->term_id. ',';
}
}
?>
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment