我想在我的WordPress帖子的\\u标题旁边显示数字。例如,我已经有10篇帖子了:
001-第一个帖子-第二个帖子等等我用一个在每个循环中添加“1++”的数字进行了尝试,但它显示的是相反的:First post=“010”,Last post=“001”。
这是我的密码。我想要这个的反面:
<?php
$query = new WP_Query( array(
\'orderby\' => \'ID\',
\'order\' => \'DESC\',
\'post_type\' => \'projects\',
\'posts_per_page\' => -1
));
$start_value = 000;
if (have_posts()) : while ($query->have_posts()) : $query->the_post();
$terms = get_the_terms($post->ID, \'skill\');
$start_value++;
$counter = sprintf("%03s",$start_value);
?>
<?php
echo $counter; include(locate_template(\'home/format.php\'));
// displays as: 001 - This is the Last Post
endwhile; endif;
?>