• User Attivo

    [Funzione] Get:recent:post

    salve,
    mi sto perdendo in un bicchier d'acqua, mi aiutate a modificare questa funzioncina in modo da far comparire anche la data del post?

    [php]
    /**

    • Function BX_get_recent_posts

    • Outputs an unorderd list of the most recent posts.
    • $current_id this post will be excluded
    • $limit max. number of posts
      */

    function BX_get_recent_posts($current_id, $limit)
    {
    global $wpdb;
    $posts = $wpdb->get_results("SELECT ID, post_title FROM " . $wpdb->posts . " WHERE post_status='publish' AND post_type<>'page' ORDER BY post_date DESC LIMIT " . $limit);
    foreach ($posts as $post) {
    $post_title = stripslashes($post->post_title);
    $permalink = get_permalink($post->ID);

        //qui ci va la data 
    
        // $datapost = ???
    
        if ($post->ID != $current_id) echo '<li><div class="recent-post"><a href="' . $permalink .'">'. $post_title . '</a></div><div class="recent-date">'.$datapost.'</div></li>'."\n";
    }
    

    }
    [/php]


  • User Attivo

    Fatto!
    basta aggiungere post_data alla query!

    alle volte mi stupisco di me stesso (sia nel bene che nel male!):yuppi: