Merhaba,
Sadece ana/üst kategorileri rastgele göstermek istiyorum ancak bi' türlü başaramadım. Nasıl yapabileceğim konusunda bi' fikir arıyorum.
Ana/Üst Kategorileri Rastgele Göstermek
3
●253
- 08-07-2014, 22:56:40
- 08-07-2014, 23:10:53
<?php //display random sorted list of terms in a given taxonomy $counter = 0; $max = 5; //number of categories to display $taxonomy = 'category'; $terms = get_terms($taxonomy); shuffle ($terms); //echo 'shuffled'; if ($terms) { foreach($terms as $term) { $counter++; if ($counter <= $max) { echo '<p><a href="' . get_category_link( $term->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $term->name ) . '" ' . '>' . $term->name.'</a></p> '; } } } ?> - 09-07-2014, 00:50:27bu kod alt kategorileri de göstermekte.altf4 adlı üyeden alıntı: mesajı görüntüle