Last active
November 9, 2016 20:12
-
-
Save yasircs4/46ce233a305911737b1a560c9d2c1539 to your computer and use it in GitHub Desktop.
المزيد من المنشورات
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <section class="more-posts"> | |
| <p class="title">المزيد من المنشورات</p> | |
| <?php | |
| wp_reset_postdata(); | |
| $ids =array(); | |
| $trams = get_terms( | |
| array( | |
| 'taxonomy' => 'category', | |
| 'hide_empty' => false, | |
| ) | |
| ); | |
| foreach ($trams as $tram){ | |
| $ids[] = $tram->term_id; | |
| } | |
| $args = array ( | |
| 'category__in' => $ids, | |
| 'posts_per_page' => 5, | |
| 'post_type' => 'post', | |
| 'orderby' => 'rand', | |
| 'post__not_in' => array(get_the_ID()), | |
| ); | |
| $query = new WP_Query( $args ); ?> | |
| <?php if ( $query->have_posts() ) : ?> | |
| <ul class="holder"> | |
| <?php while ( $query->have_posts() ): ?> | |
| <?php $query->the_post(); ?> | |
| <li class="maisra-post"> | |
| <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> | |
| <?php the_title(); ?> | |
| </a> | |
| </li> | |
| <?php endwhile; ?> | |
| </ul> | |
| <?php endif; ?> | |
| <?php wp_reset_postdata(); ?> | |
| </section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment