0
我需要在循環中的主博客帖子每發佈5篇帖子後,從自定義帖子類型中勾選帖子。請給我一些代碼。Hook在每5個帖子後自定義帖子
我需要在循環中的主博客帖子每發佈5篇帖子後,從自定義帖子類型中勾選帖子。請給我一些代碼。Hook在每5個帖子後自定義帖子
可能出現在任何鉤爲或我不知道這件事,但你可以做這樣的事情: -
<?php
$postnum = 0; // Set counter to 0 outside the loop
if (have_posts()) :
while (have_posts()) : the_post();
// Do regular stuff
$postnum++; // Increment counter
if ($postnum % 5 == 0){ // If the remainder of the counter value divided by 5 equals zero
// Do special stuff
}
endwhile;
endif;
?>
希望這會幫助你。
首先你必須告訴我們,你已經嘗試過。 –