示例代码
<?php
$post_tags = get_the_tags( 1502 );
foreach( $post_tags as $post_tag ) {
echo '<li><a href="' . get_tag_link( $post_tag ) . '">' . $post_tag->name . '</a></li>';
}
?>
<?php
$post_tags = get_the_tags( 1502 );
foreach( $post_tags as $post_tag ) {
echo '<li><a href="' . get_tag_link( $post_tag ) . '">' . $post_tag->name . '</a></li>';
}
?>
之前