Title: allangf's Replies | WordPress.org

---

# allangf

  [  ](https://wordpress.org/support/users/allangf/)

 *   [Profile](https://wordpress.org/support/users/allangf/)
 *   [Topics Started](https://wordpress.org/support/users/allangf/topics/)
 *   [Replies Created](https://wordpress.org/support/users/allangf/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/allangf/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/allangf/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/allangf/engagements/)
 *   [Favorites](https://wordpress.org/support/users/allangf/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Every titles are same](https://wordpress.org/support/topic/every-titles-are-same/)
 *  Thread Starter [allangf](https://wordpress.org/support/users/allangf/)
 * (@allangf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/every-titles-are-same/#post-9265757)
 *     ```
         <?php
         $blockquotes = array('blockquote-green', 'blockquote-blue', 'blockquote-red', 'blockquote-yellow');
         $args = array( 'numberposts' => -1);
         $posts= get_posts( $args );
         /* for - used possible display the posts with a beautiful layout */
         if ($posts) {
           for ($i = 0; $i < count($posts) ; $i++ ) {
             $post = $posts[$i];
             setup_postdata($post);
             ?>
             <br>
             <!-- Get Post URL-->
             <a href="<?php the_permalink($post) ?>">
               <h4>
                 <?php
                 echo get_the_title($post);
                 ?>
               </h4>
             </a>
             <blockquote class="<?php echo $blockquotes[$i % count($blockquotes)] ?>">
               <?php
               the_excerpt();
               ?>
             </blockquote>
             <br>
             <?php
           }
         }
         ?>
       ```
   
 * [@drixe](https://wordpress.org/support/users/drixe/) TKS.

Viewing 1 replies (of 1 total)