ilginiz için teşekkür ederim. Biraz araştırma yaptım ve id ile yazı numarası nasıl getirilir buldum.
İlgili konu Diğer konu Nasıl yapılır?
Alttaki vereceğim kodu temanızın functions.php uygun bir yere ekleyin.
function Get_Post_Number($postID){
$temp_query = $wp_query;
$postNumberQuery = new WP_Query('orderby=date&order=<strong>DESC</strong>&posts_per_page=-1');
$counter = 1;
$postCount = 0;
if($postNumberQuery->have_posts()) :
while ($postNumberQuery->have_posts()) : $postNumberQuery->the_post();
if ($postID == get_the_ID()){
$postCount = $counter;
} else {
$counter++;
}
endwhile; endif;
wp_reset_query();
$wp_query = $temp_query;
return $postCount;
}Ardından yine vereceğim kodu iste yazı numarası göstermek istediğiniz yere ekleyin.
<p>Post Number: <?php the_ID(); ?></p>