Title: tcushing's Replies | WordPress.org

---

# tcushing

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

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

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Only title displayed – need to show content](https://wordpress.org/support/topic/only-title-displayed-need-to-show-content/)
 *  Thread Starter [tcushing](https://wordpress.org/support/users/tcushing/)
 * (@tcushing)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/only-title-displayed-need-to-show-content/#post-3032016)
 * Thank you, I added the semicolon as such by still not showing content. If you
   have any other suggestions I would be grateful.
 *     ```
       <div class="entry">
              <?php the_content(__('More...'));  ?>
           </div>
            </div>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Countdown Timer] [Plugin: Countdown Timer] Seperate events](https://wordpress.org/support/topic/plugin-countdown-timer-seperate-events/)
 *  Thread Starter [tcushing](https://wordpress.org/support/users/tcushing/)
 * (@tcushing)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-countdown-timer-seperate-events/#post-1797977)
 * I want to put a space between each event like a ‘br’ or ‘<p>’ so that the events
   are not listed so close to each other.
 * Any help you can throw my way would be greatly appreciated!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom Field as customary date?](https://wordpress.org/support/topic/custom-field-as-customary-date/)
 *  Thread Starter [tcushing](https://wordpress.org/support/users/tcushing/)
 * (@tcushing)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/custom-field-as-customary-date/#post-1774557)
 * Awesome! I got it. Thanks!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom Field as customary date?](https://wordpress.org/support/topic/custom-field-as-customary-date/)
 *  Thread Starter [tcushing](https://wordpress.org/support/users/tcushing/)
 * (@tcushing)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/custom-field-as-customary-date/#post-1774495)
 * If I enter the data as 11/30/2010. My posts do not appear. I am using the following
   code to select particular posts and order them:
 *     ```
       $querystr = "
   
           SELECT wposts.*
   
           FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta
   
           WHERE wposts.ID = wpostmeta.post_id
   
           AND wposts.post_status = 'publish'
   
           AND wposts.post_type = 'post'
   
           AND wpostmeta.meta_key = 'upcomingeventdate'
   
           AND wpostmeta.meta_value > NOW()   
   
           ORDER BY wpostmeta.meta_value asc
   
        ";
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Get categories](https://wordpress.org/support/topic/get-categories/)
 *  Thread Starter [tcushing](https://wordpress.org/support/users/tcushing/)
 * (@tcushing)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/get-categories/#post-1724417)
 * Thanks! I’ll chip away at it!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Get categories](https://wordpress.org/support/topic/get-categories/)
 *  Thread Starter [tcushing](https://wordpress.org/support/users/tcushing/)
 * (@tcushing)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/get-categories/#post-1724361)
 * Awesome, thanks!
 * One more question – can you please direct me to where I can find out how to set
   the ORDER BY to a post tag for the code below instead of the meta value:
 *     ```
       <?php
   
        $querystr = "
           SELECT wposts.*
           FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta
           WHERE wposts.ID = wpostmeta.post_id
           AND wposts.post_status = 'publish'
           AND wposts.post_type = 'post'
           AND wpostmeta.meta_key = 'mathdate'
           AND wpostmeta.meta_value > NOW()
           ORDER BY wpostmeta.meta_value desc
        ";
        $pageposts = $wpdb->get_results($querystr, OBJECT);
       ?>
       <?php if ($pageposts): ?>
         <?php foreach ($pageposts as $post): ?>
           <?php setup_postdata($post_title); ?>
           <li><a href="<?php the_permalink(); ?>"><?php the_title();
       ?></a></li>
        <?php endforeach; ?>
       <?php endif; ?>
       ```
   

Viewing 6 replies - 1 through 6 (of 6 total)