Ben 10 en son "aktif" WordPress blog mesajları (En yeni yorumlar ile yani olanlar) görüntülemek için bir komut dosyası yazıyorum. Sorun liste çiftleri bir şey vardır, olduğunu. Ben çiftleri ayıklamak istiyorum. MySQL sorgusu değiştirerek bunu yapmanın kolay bir yolu (gibi, NEREYE IGNORE) veya diğer bazı araçlar var mı? İşte ben bugüne kadar ne var:
<?php
function cd_recently_active() {
global $wpdb, $comments, $comment;
$number = 10; //how many recently active posts to display? enter here
if ( !$comments = wp_cache_get( 'recent_comments', 'widget' ) ) {
$comments = $wpdb->get_results("SELECT comment_date, comment_author, comment_author_url, comment_ID, comment_post_ID, comment_content FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT $number");
wp_cache_add( 'recent_comments', $comments, 'widget' );
}
?>