All pastes #640417 Raw Edit

Unnamed

public text v1 · immutable
#640417 ·published 2007-07-31 11:42 UTC
rendered paste body
<?php 
if ( $scheduled = $wpdb->get_results("SELECT ID, post_title, post_date_gmt FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'future' ORDER BY post_date ASC") ) : 
 ?> 
<div> 
<h2><?php _e('Sırada ne var?') ?></h2> 
<ul> 
<?php 
foreach ($scheduled as $post) { 
    if ($post->post_title == '') 
        $post->post_title = sprintf(__('Post #%s'), $post->ID); 
    echo "<li>" . sprintf(__('%1$s %2$s sonra'), "<a>$post->post_title</a>", human_time_diff( current_time('timestamp', 1), strtotime($post->post_date_gmt. ' GMT') ))  . "</li>"; 
 } 
 ?> 
</ul> 
</div> 
<?php endif; ?>