It is necessary to deduce from the database: title, link, number of views and number of comments. Now I can not bring the number of comments in the record and they are in a different table. Save !!)). Records are not standard WordPrese, but from the Asgaros Forum plugin.
$posts = $wpdb->get_results("SELECT * FROM wp_forum_topics ORDER BY id DESC LIMIT 3"); $posts_comment = $wpdb->get_results("SELECT * FROM wp_forum_posts WHERE parent_id=1 LIMIT 3"); ?> <ul> <?php foreach ($posts as $posts_i) { ?> <li> <a href="/sample-page/?view=thread&id=<?php echo $posts_i->id ?>"><?php echo $posts_i->name ?></a> <span>Просмотры: <?php echo $posts_i->views ?></span> <span>Коментарии: <?php foreach ($posts_comment as $posts_comment_i) { ?> <?php echo $posts_comment_i->parent_id ?> <?php } ?> </span> </li> <?php } ?>