Népszerű bejegyzések plugin nélkül
A népszerű bejegyzéseket megjelenítheted a sablonodban plugin nélkül ezzel a kóddal: <h3>Népszerű bejegyzések</h3> <ul> <?php $result = $wpdb->get_results(” SELECT comment_count, ID, post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 7 „); foreach ($result as $post) { setup_postdata($post); $postid = $post->ID; $title = $post->post_title; $commentcount = $post->comment_count; if ($commentcount != 0) { ?> <li><a […]