functions.php
1 2 3 4 |
function getLoopCount() { global $wp_query; return $wp_query->current_post+1; } |
連番を表示したいファイル(テンプレート)
1 |
<?php echo getLoopCount(); ?> |
1 2 3 4 |
function getLoopCount() { global $wp_query; return $wp_query->current_post+1; } |
1 |
<?php echo getLoopCount(); ?> |
コメント